SHAKTI
A Text component is an augmented p tag with the ability to mix in Base props as well as the below text props:
| Prop | Type | Notes |
|---|---|---|
| size | number or string | set font size |
| weight | number or string | set font weight |
| bold | boolean | bold text |
| italic | boolean | italic 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!