UNPKG

retabler

Version:

React Component library via Tabler

19 lines (18 loc) 578 B
import * as React from "react"; import ListItem from "./ListItem"; import ListGroup from "./ListGroup"; import ListGroupItem from "./ListGroupItem"; export interface ListProps { className?: string; children: React.ReactNode; unstyled?: boolean; seperated?: boolean; inline?: boolean; } declare function List({ className, children, unstyled, seperated, inline }: ListProps): JSX.Element; declare namespace List { var Item: typeof ListItem; var Group: typeof ListGroup; var GroupItem: typeof ListGroupItem; } export default List;