import type { FC } from 'react' import { Trans } from '@lingui/react/macro' import { classNames } from '../index' import { Typography } from '../typography' interface ToastButtonsProps { href?: string onDismiss: () => void } export const ToastButtons: FC = ({ href, onDismiss }) => { return (
{href && ( View Detail )} Dismiss
) }