import React from 'react'; import { SvgProps } from 'react-native-svg'; import svgPaths from './fonts/w-icon.json'; export type IconsName = keyof typeof svgPaths; export interface IconsProps extends SvgProps { name?: IconsName; size?: number; fill?: string; stroke?: string; /** * SVG path d=`paths` */ paths?: string[]; /** * Svg 图标字符串 */ xml?: string; color?: string; touchable?: boolean; onPress?: () => void; } export default function Icon(props: IconsProps): React.JSX.Element | null; //# sourceMappingURL=index.d.ts.map