@hugeicons/react-native
Version:
HugeIcons Pro React Native Component Library https://hugeicons.com
17 lines (16 loc) • 529 B
TypeScript
import { SvgProps } from 'react-native-svg';
import { StyleProp, ViewStyle } from 'react-native';
export type IconSvgElement = readonly (readonly [string, {
readonly [key: string]: string | number;
}])[];
export interface HugeiconsProps extends SvgProps {
size?: string | number;
strokeWidth?: number;
absoluteStrokeWidth?: boolean;
className?: string;
style?: StyleProp<ViewStyle>;
icon: IconSvgElement;
altIcon?: IconSvgElement;
showAlt?: boolean;
}
export declare const HugeiconsIcon: any;