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