9 lines
420 B
TypeScript
9 lines
420 B
TypeScript
import * as React from 'react';
|
|
import { FluentIconsProps } from './FluentIconsProps.types';
|
|
export declare type FluentIcon = React.FC<FluentIconsProps>;
|
|
export declare type CreateFluentIconOptions = {
|
|
flipInRtl?: boolean;
|
|
color?: boolean;
|
|
};
|
|
export declare const createFluentIcon: (displayName: string, width: string, pathsOrSvg: string[] | string, options?: CreateFluentIconOptions | undefined) => FluentIcon;
|