UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

11 lines (8 loc) 247 B
import { iconsList } from "./list"; export interface IconComponentProps { name: keyof typeof iconsList; size: number; color: string; direction?: "inherit" | "ltr" | "rtl"; } export type IconProps = Partial<IconComponentProps>;