rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
12 lines (11 loc) • 329 B
TypeScript
import React from 'react';
import { StyleProp, TextStyle } from 'react-native';
import { IconName } from '../../types';
type Props = {
name: IconName;
color?: string;
size?: number;
style?: StyleProp<TextStyle>;
};
export declare const Icon: ({ name, size, color, style }: Props) => React.JSX.Element;
export {};