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.

10 lines 302 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>; }; //# sourceMappingURL=types.d.ts.map