UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

15 lines (14 loc) 271 B
/** * Paragraph items list props */ export interface PListProps { /** * List items */ items?: string[]; } /** * Paragraph items list * @param items Items */ export declare function PList(props: PListProps): import("react/jsx-runtime").JSX.Element;