(props: FlexProps)
| 1 | import { Flex, type FlexProps } from "@chakra-ui/react"; |
| 2 | |
| 3 | const PageHeaderContainer = (props: FlexProps) => { |
| 4 | return ( |
| 5 | <Flex |
| 6 | px={8} |
| 7 | py={2} |
| 8 | minH={16} |
| 9 | w="full" |
| 10 | direction={{ base: "column", sm: "row" }} |
| 11 | alignItems={{ base: "flex-start", sm: "center" }} |
| 12 | justifyContent="space-between" |
| 13 | fontWeight="500" |
| 14 | {...props} |
| 15 | /> |
| 16 | ); |
| 17 | }; |
| 18 | |
| 19 | export default PageHeaderContainer; |
nothing calls this directly
no outgoing calls
no test coverage detected