@fluentui/react-icons
Version:
Fluent System Icons are a collection of familiar, friendly, and modern icons from Microsoft.
6 lines (5 loc) • 434 B
TypeScript
import * as React from "react";
import type { FluentIconsProps } from "./FluentIconsProps.types";
import type { CreateFluentIconOptions } from "./createFluentIcon";
declare const wrapIcon: (Icon: (iconProps: FluentIconsProps) => React.ReactElement, displayName?: string | undefined, options?: CreateFluentIconOptions | undefined) => React.FC<FluentIconsProps<React.SVGAttributes<SVGElement>, SVGSVGElement>>;
export default wrapIcon;