UNPKG

@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.

12 lines (9 loc) 251 B
import { StyleProp, ViewStyle } from 'react-native' export type IconWeight = 'regular' | 'fill' | 'bold' export type IconProps = { color?: string size?: number | string weight?: IconWeight mirrored?: boolean style?: StyleProp<ViewStyle> }