@uiw/react-native
Version:
UIW for React Native
21 lines (20 loc) • 533 B
TypeScript
import React from 'react';
import { SvgProps } from 'react-native-svg';
import svgPaths from '@uiw/icons/fonts/w-icon.json';
export declare 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;
}
declare const _default: (props: IconsProps) => React.JSX.Element | null;
export default _default;