2024-06-07 20:17:03 +03:00
|
|
|
import clsx from 'clsx';
|
|
|
|
|
|
|
|
import { CProps } from '../props';
|
|
|
|
|
2024-06-21 19:16:41 +03:00
|
|
|
function FlexColumn({ className, children, ...restProps }: CProps.Div) {
|
2024-06-07 20:17:03 +03:00
|
|
|
return (
|
|
|
|
<div className={clsx('cc-column', className)} {...restProps}>
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FlexColumn;
|