SHAKTI

Text

A Text component is an augmented p tag with the ability to mix in Base props as well as the below text props:

PropTypeNotes
sizenumber or stringset font size
weightnumber or stringset font weight
boldbooleanbold text
italicbooleanitalic text

Examples:

<Text textCenter>Regular text!</Text>
<Text textCenter bold>Bold text!</Text>
<Text textCenter size={24} border="4px solid deeppink">size 24px text with a border!</Text>

Regular text!

Bold text!

size 24px text with a border!