* refactor(css): add global classes for common icon types * refactor(css): target child SVGs instead of creating new icon classes * fix: fix ButtonWithDropdown style class spacing
66 lines
2.4 KiB
TypeScript
66 lines
2.4 KiB
TypeScript
import {
|
|
CheckCircleIcon,
|
|
ExclamationCircleIcon,
|
|
ExclamationIcon,
|
|
InformationCircleIcon,
|
|
} from '@heroicons/react/outline';
|
|
import { XIcon } from '@heroicons/react/solid';
|
|
import React from 'react';
|
|
import type { ToastProps } from 'react-toast-notifications';
|
|
import Transition from '../Transition';
|
|
|
|
const Toast: React.FC<ToastProps> = ({
|
|
appearance,
|
|
children,
|
|
onDismiss,
|
|
transitionState,
|
|
}) => {
|
|
return (
|
|
<div className="flex items-end justify-center max-w-full px-2 py-2 pointer-events-none toast sm:items-start sm:justify-end">
|
|
<Transition
|
|
show={transitionState === 'entered'}
|
|
enter="transition duration-300 transform-gpu"
|
|
enterFrom="opacity-0 scale-95"
|
|
enterTo="opacity-100 scale-100"
|
|
leave="transition duration-150 transform-gpu"
|
|
leaveFrom="opacity-100 scale-100"
|
|
leaveTo="opacity-0 scale-90"
|
|
>
|
|
<div className="w-full max-w-sm bg-gray-800 rounded-lg shadow-lg pointer-events-auto ring-1 ring-gray-500">
|
|
<div className="overflow-hidden rounded-lg ring-1 ring-black ring-opacity-5">
|
|
<div className="p-4">
|
|
<div className="flex items-start">
|
|
<div className="flex-shrink-0">
|
|
{appearance === 'success' && (
|
|
<CheckCircleIcon className="w-6 h-6 text-green-400" />
|
|
)}
|
|
{appearance === 'error' && (
|
|
<ExclamationCircleIcon className="w-6 h-6 text-red-500" />
|
|
)}
|
|
{appearance === 'info' && (
|
|
<InformationCircleIcon className="w-6 h-6 text-indigo-500" />
|
|
)}
|
|
{appearance === 'warning' && (
|
|
<ExclamationIcon className="w-6 h-6 text-orange-400" />
|
|
)}
|
|
</div>
|
|
<div className="flex-1 w-0 ml-3 text-white">{children}</div>
|
|
<div className="flex flex-shrink-0 ml-4">
|
|
<button
|
|
onClick={() => onDismiss()}
|
|
className="inline-flex text-gray-400 transition duration-150 ease-in-out focus:outline-none focus:text-gray-500"
|
|
>
|
|
<XIcon />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Transition>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Toast;
|