UNPKG

@gluestack-ui/icon

Version:

A universal headless icon component for React Native, Next.js & React

21 lines (20 loc) 692 B
import React from 'react'; import { Svg } from 'react-native-svg'; export { Svg }; export type IPrimitiveIcon = { height?: number | string; width?: number | string; fill?: string; color?: string; size?: number | string; stroke?: string; as?: React.ElementType; className?: string; classNameColor?: string; style?: any; }; export declare const PrimitiveIcon: React.ForwardRefExoticComponent<IPrimitiveIcon & React.RefAttributes<Svg>>; export declare const UIIcon: import("../createIcon").IIconComponentType<(IPrimitiveIcon & React.RefAttributes<Svg>) | { fill?: import("react-native").ColorValue; stroke?: import("react-native").ColorValue; }>;