UNPKG

react-native-icomoon

Version:
20 lines (19 loc) 453 B
import React from 'react'; export interface IconSet { icons: Array<any>; } export interface IconMoonProps { iconSet: IconSet; name: string; color?: string; size?: number; strokeWidth?: number; offset?: number; } export interface IconMap { name: string; paths: Array<string>; } declare const IconMoon: React.FC<IconMoonProps>; export declare function iconList(iconSet: IconSet): any[] | null; export default IconMoon;