ConceptPortal-public/rsconcept/frontend/src/components/ui/FlexColumn.tsx

14 lines
275 B
TypeScript
Raw Normal View History

import clsx from 'clsx';
import { CProps } from '../props';
2024-06-21 19:27:36 +03:00
function FlexColumn({ className, children, ...restProps }: CProps.Div) {
return (
<div className={clsx('cc-column', className)} {...restProps}>
2023-12-28 14:04:44 +03:00
{children}
</div>
);
}
2023-12-28 14:04:44 +03:00
export default FlexColumn;