UNPKG

@knowmax/genericlist-fluentuiv9

Version:

Knowmax Generic list with basic CRUD support with Fluent V9 user interface implementation.

13 lines (12 loc) 503 B
import { FunctionComponent } from "react"; import { ButtonProps } from "@fluentui/react-button"; import { FluentIcon } from "@fluentui/react-icons"; import { GenericCudList } from "@knowmax/genericlist-core"; type IProps<T = unknown, ET = unknown> = { list: GenericCudList<T, ET>; customIcon?: FluentIcon; children?: React.ReactNode; } & ButtonProps; /** Renders button to start process to create new item. */ export declare const CreateItem: FunctionComponent<IProps<any, any>>; export {};