manifold/web/components/layout/col.tsx
2022-01-24 21:06:22 -06:00

17 lines
321 B
TypeScript

import clsx from 'clsx'
import { CSSProperties } from 'react'
export function Col(props: {
children?: any
className?: string
style?: CSSProperties
}) {
const { children, className, style } = props
return (
<div className={clsx(className, 'flex flex-col')} style={style}>
{children}
</div>
)
}