UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

12 lines (11 loc) 316 B
import { FC, ReactNode, ReactNodeArray } from 'react'; import ListItem from "./Item"; import { EColor } from "enum"; import './index.scss'; interface IProps { children: ReactNode | ReactNodeArray; className?: string; theme?: EColor; } declare const ListGroup: FC<IProps>; export { ListItem, ListGroup };