@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
22 lines (18 loc) • 360 B
text/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']
}