UNPKG

mfg-ui-components

Version:

React UI library with reusable components

12 lines (11 loc) 384 B
import React from 'react'; import "./Wrapper.scss"; export type wrap = 'fixWrap' | 'fluidWrap' | "customWrap"; export interface Props { wrapClass: wrap; children?: any; wrapId?: any; wrapStyle?: React.CSSProperties; } export declare const Wrapper: ({ wrapClass, children, wrapId, wrapStyle }: Props) => import("react/jsx-runtime").JSX.Element; export default Wrapper;