@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
19 lines (18 loc) • 390 B
TypeScript
import type { ColorValue } from 'react-native';
import type { SvgProps } from 'react-native-svg';
export interface IconCommonProps extends SvgProps {
/**
* 图标大小
* @default 24
*/
size?: number;
/**
* 图片颜色
* @default icon_color
*/
color?: ColorValue;
/**
* svg 内部的样式
*/
svgStyle?: SvgProps['style'];
}