import clsx from 'clsx' import { CSSProperties, Ref } from 'react' export function Col(props: { children?: any className?: string style?: CSSProperties ref?: Ref }) { const { children, className, style, ref } = props return (
{children}
) }