mfg-ui-components
Version:
React UI library with reusable components
10 lines (9 loc) • 397 B
TypeScript
import './Flex.scss';
export type width = 'col-1' | 'col-2' | 'col-3' | 'col-4' | 'col-5' | 'col-6' | 'col-7' | 'col-8' | 'col-9' | 'col-10' | 'col-11' | "full-col";
export interface Props {
CustomClass?: any;
FlexWidth?: width;
children?: any;
}
export declare const Flex: ({ CustomClass, children, FlexWidth }: Props) => import("react/jsx-runtime").JSX.Element;
export default Flex;