Outlook_Addin_LLM/node_modules/@fluentui/react-icons/lib/utils/createFluentIcon.d.ts

11 lines
432 B
TypeScript
Raw Normal View History

/// <reference types="react" />
import { FluentIconsProps } from "./FluentIconsProps.types";
export declare type FluentIcon = {
(props: FluentIconsProps): JSX.Element;
displayName?: string;
};
export declare type CreateFluentIconOptions = {
flipInRtl?: boolean;
};
export declare const createFluentIcon: (displayName: string, width: string, paths: string[], options?: CreateFluentIconOptions | undefined) => FluentIcon;