11 lines
432 B
TypeScript
11 lines
432 B
TypeScript
|
/// <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;
|