I am using React Material UI component. Typography component has 2 props, variant and component.What is the difference between these props.
I am using React Material UI component. Typography component has 2 props, variant and component.What is the difference between these props.
Some predefine styles can be used with variant but final HTML element to be rendered can be set with component. e.g. you can use variant="body1" with component="h2" or variant="body2" with component="h2" that has smaller font-size.
variant => you use styles of normal html tag.
component => you use a React element for root node.