UNPKG

polaris-glints

Version:

Glints forked polaris react

17 lines (16 loc) 518 B
import React from 'react'; interface Item { /** Title of the item */ term: React.ReactNode; /** Item content */ description: React.ReactNode; } export interface DescriptionListProps { /** Collection of items for list */ items: Item[]; /** Determines the spacing between list items */ spacing?: 'tight' | 'loose'; } export declare function DescriptionList({ items, spacing, }: DescriptionListProps): JSX.Element; export {}; //# sourceMappingURL=DescriptionList.d.ts.map