UNPKG

coral-ui

Version:

Biblioteca de components criada pelo Design System para os produtos da Pulse criada em react-native

11 lines (10 loc) 315 B
import { ImageProps } from 'react-native'; import { CustomBoxProps } from '../Box/interface'; export declare type ImageXorLabel = { image: string; label?: never; } | { image?: never; label: string; }; export declare type AvatarProps = ImageXorLabel & CustomBoxProps & Partial<ImageProps>;