File size: 139 Bytes
1e92f2d |
1 2 3 4 5 6 |
import { Box, type BoxProps } from "@chakra-ui/react"
export function Hr(props: BoxProps) {
return <Box as="hr" my="10" {...props} />
}
|
1e92f2d |
1 2 3 4 5 6 |
import { Box, type BoxProps } from "@chakra-ui/react"
export function Hr(props: BoxProps) {
return <Box as="hr" my="10" {...props} />
}
|