UNPKG

phx-react

Version:

PHX REACT

12 lines (11 loc) 358 B
import React from 'react'; export interface DescriptionListsProps { data?: Array<{ title: string; description: string; }>; type?: 'default' | 'border'; size?: 'default' | 'small'; className?: string; } export declare function PHXDescriptionLists({ data, size, type, className }: DescriptionListsProps): React.JSX.Element;