katoikia-app/web-ui/web-react/node_modules/primereact/selectitem/selectitem.d.ts

11 lines
206 B
TypeScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
import {IconType} from "../utils";
export interface SelectItem {
label?: string;
value?: any;
className?: string;
icon?: IconType<SelectItem>;
title?: string;
disabled?: boolean;
}