UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

16 lines 577 B
import React from 'react'; import type { TypographyTextProps } from '@open-condo/ui/src'; import type { ListProps as DefaultListProps } from 'antd'; type ListDataSource = { label: string; value: string; valueTextType?: TypographyTextProps['type']; valueClick?: () => void; }; type CondoListProps = { title?: string; }; export type ListProps = Omit<DefaultListProps<ListDataSource>, 'bordered' | 'pagination' | 'footer' | 'renderItem' | 'header'> & CondoListProps; declare const List: React.FC<ListProps>; export { List, }; //# sourceMappingURL=list.d.ts.map