mfg-ui-components
Version:
React UI library with reusable components
12 lines (11 loc) • 464 B
TypeScript
import React from 'react';
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;
style?: React.CSSProperties;
}
export declare const Flex: ({ CustomClass, children, FlexWidth, style }: Props) => import("react/jsx-runtime").JSX.Element;
export default Flex;