react-native-feather-icon
Version:
A ready-to-use customizable react native component for feather icons.
17 lines (14 loc) • 393 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
declare module 'react-native-feather-icon' {
export interface FeatherIconProps {
iconName: string;
color?: string;
width?: number;
height?: number;
style?: StyleProp<ViewStyle>;
strokeWidth?: number;
}
const FeatherIcon: React.FC<FeatherIconProps>;
export default FeatherIcon;
}