@vuduc0801/react-native-phosphor-icons
Version:
Since [Phosphor](https://phosphoricons.com/) does not support React Native, we have to convert all the SVGs to React Native SVGs.
15 lines (11 loc) • 298 B
text/typescript
import { StyleProp, ViewStyle } from 'react-native'
export type IconWeight = 'regular' | 'fill' | 'bold'
export type IconSvgProps = {
color?: string
size?: number | string
style?: StyleProp<ViewStyle>
}
export type IconProps = IconSvgProps & {
weight?: IconWeight
mirrored?: boolean
}