UNPKG

@fluentui/react-icons

Version:

Fluent System Icons are a collection of familiar, friendly, and modern icons from Microsoft.

9 lines (8 loc) 420 B
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;