UNPKG

@bottledbrains/ui

Version:

A React UI library based on Tailwind CSS

12 lines (11 loc) 288 B
import { FC } from 'react'; import { CommonProps } from '../../types'; export interface ListProps extends CommonProps { title?: string; } export interface ListItemProps extends CommonProps { } declare const List: FC<ListProps> & { Item: FC<ListItemProps>; }; export default List;