UNPKG

retabler

Version:

React Component library via Tabler

10 lines (9 loc) 319 B
import * as React from "react"; export interface ListGroupProps { className?: string; children: React.ReactNode; transparent?: boolean; isCardBody?: boolean; } declare function ListGroup({ className, children, transparent, isCardBody, }: ListGroupProps): JSX.Element; export default ListGroup;