6 lines
365 B
TypeScript
6 lines
365 B
TypeScript
|
/// <reference types="react" />
|
||
|
import { FluentIconsProps } from "./FluentIconsProps.types";
|
||
|
import { CreateFluentIconOptions, FluentIcon } from "./createFluentIcon";
|
||
|
declare const wrapIcon: (Icon: (iconProps: FluentIconsProps) => JSX.Element, displayName?: string | undefined, options?: CreateFluentIconOptions | undefined) => FluentIcon;
|
||
|
export default wrapIcon;
|