UNPKG

iconoir-react

Version:

React library for Iconoir, the biggest open source icon library with tons of free icons.

8 lines (7 loc) 355 B
import React from "react"; export declare const IconoirContext: React.Context<Partial<React.SVGProps<SVGSVGElement>>>; export interface IconoirProviderProps { iconProps?: Partial<React.SVGProps<SVGSVGElement>>; children: React.ReactNode; } export declare function IconoirProvider({ iconProps, children }: IconoirProviderProps): React.JSX.Element;