mfg-ui-components
Version:
React UI library with reusable components
10 lines (9 loc) • 309 B
TypeScript
import "./Wrapper.scss";
export type wrap = 'fixWrap' | 'fluidWrap' | "customWrap";
export interface Props {
wrapClass: wrap;
children?: any;
wrapId?: any;
}
export declare const Wrapper: ({ wrapClass, children, wrapId }: Props) => import("react/jsx-runtime").JSX.Element;
export default Wrapper;