UNPKG

@fluentui/react-icons

Version:

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

11 lines (10 loc) 432 B
/// <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;