UNPKG

@plurid/plurid-ui-components-react

Version:

Plurid User Interface Components for React

19 lines (18 loc) 449 B
import React from 'react'; import { Theme } from '@plurid/plurid-themes'; export interface ItemslineProperties { items: string[]; removeItem: (item: string) => void; theme?: Theme; level?: number; left?: boolean; style?: React.CSSProperties; className?: string; } /** * Renders an icon and a descriptive text. * * @param properties */ declare const Itemsline: React.FC<ItemslineProperties>; export default Itemsline;