@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 • 349 B
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;
};
//# sourceMappingURL=types.d.ts.map