1
<Text>text normal</Text>
Set the color of Text.
2
<Text color="warning">text warning</Text>
3
<Text color="error">text error</Text>
4
<Text color="success">text success</Text>
Set the style of Text.
2
<Text underline>text underline</Text>
3
<Text delete>text delete</Text>
4
<Text italic>text italic</Text>
5
<Text weight={600}>text weight</Text>
6
<Text size="lg">text weight</Text>
Set variant of Text.
1
<Group direction="column">
2
<Text variant="h1">h1 title</Text>
3
<Text variant="h2">h2 title</Text>
4
<Text variant="h3">h3 title</Text>
5
<Text variant="h4">h4 title</Text>
6
<Text variant="h5">h5 title</Text>
7
<Text variant="h6">h6 title</Text>
Set transform of Text.You can set the value to capitalize, uppercase and lowercase.
2
<Text transform="capitalize">ASSddd</Text>
3
<Text transform="uppercase">ASSddd</Text>
4
<Text transform="lowercase">ASSddd</Text>