mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
16 lines
336 B
TypeScript
16 lines
336 B
TypeScript
import clsx from 'clsx';
|
|
|
|
import { CProps } from '../props';
|
|
|
|
export interface FlexColumnProps extends CProps.Div {}
|
|
|
|
function FlexColumn({ className, children, ...restProps }: FlexColumnProps) {
|
|
return (
|
|
<div className={clsx('cc-column', className)} {...restProps}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default FlexColumn;
|