UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

10 lines (9 loc) 249 B
import { FC, ReactNode, ReactNodeArray } from 'react'; import './index.scss'; interface IProps { children: ReactNode | ReactNodeArray; fluid?: boolean; className?: string; } declare const Container: FC<IProps>; export default Container;