rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
16 lines (14 loc) • 323 B
text/typescript
import {IconName} from './iconType';
export type ToastProps = {
backgroundColor?: string;
bottom?: number;
duration?: number;
fontSize?: number;
icon?: IconName;
position?: 'top' | 'bottom';
text: string;
textColor?: string;
top?: number;
visible: boolean;
setVisible: (visible: boolean) => void;
};