Search code examples
reactjschakra-ui

How to make Chakra's <Text> component inline?


I can't figure our how to make the Chakra component inline. Read the documentation but couldn't figure out the right property or if this is a css class thing.

<Text> Hello World, </Text>
<Text> place me next to the Text above! </Text>

Solution

  • You can use Flex for this

    <Flex>
    <Text> Hello World, </Text>
    <Text> place me next to the Text above! </Text>
    </Flex>