UNPKG

react-native-simi-comps

Version:
9 lines (8 loc) 294 B
import { ComponentProps } from "react"; import { Feather } from "@expo/vector-icons"; export declare type IconOptions = ComponentProps<typeof Feather>["name"]; export default function Icon({ name, size, color, }: { name: IconOptions; size?: number; color?: string; }): JSX.Element;