UNPKG

tm-reuseable-components

Version:

This is a reuseable components lib made for TextMercato

12 lines (11 loc) 274 B
import { ReactNode } from "react"; export interface ListProps { children?: ReactNode; dense?: boolean; disablePadding?: boolean; subheader?: ReactNode; list?: Array<object>; className?: string; disableGutters?: boolean; iconWidth?: string; }