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

16 lines
336 B
TypeScript
Raw Normal View History

import clsx from 'clsx';
import { CProps } from '../props';
2023-12-28 14:04:44 +03:00
export interface FlexColumnProps extends CProps.Div {}
2023-12-28 14:04:44 +03:00
function FlexColumn({ className, children, ...restProps }: FlexColumnProps) {
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;