UNPKG

react-native-styled-toast

Version:

A theme friendly, easy to use react-native toast component built using styled-components and styled-system.

12 lines (11 loc) 310 B
import * as React from 'react'; import { ColorProps, SpaceProps } from 'styled-system'; export declare type IconProps = SpaceProps & ColorProps & { name: string; family: string; color?: string; size: number; testID?: string; }; declare const Icon: React.FC<IconProps>; export default Icon;