chakra ui flex
import { Box, Flex } from "@chakra-ui/react"// verbose<Box display="flex" alignItems="center" justifyContent="space-between">  Box with Flex props</Box>// shorthand using the `Flex` component<Flex align="center" justify="center">  Flex Container</Flex>
