import React from 'react'; import { ToastProps } from './interfaces'; import { config as theme } from '../../theme'; import Typography from '../Typography'; import { RainbowTopBar, StyledToast, ToastBody } from './styles'; const Toast = (props: ToastProps) => ( {props.showRainbowHeader && } {props.icon ||
} {props.title} {props.subtitle && ( {props.subtitle} )} {props.button ||
} ); export default Toast;