Portal/rsconcept/frontend/src/components/ui/FlexColumn.tsx

14 lines
275 B
TypeScript
Raw Normal View History

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;