mirror of
https://github.com/System-End/site.git
synced 2026-04-19 16:28:21 +00:00
5 lines
169 B
JavaScript
5 lines
169 B
JavaScript
import { Flex } from 'theme-ui'
|
|
|
|
export default function FlexCol({ children, ...props }) {
|
|
return <Flex sx={{ flexDirection: 'column', ...props }}>{children}</Flex>
|
|
}
|