shoreline
shoreline copied to clipboard
fix(toast-stack): pass custom ariaProps to the Toast component
Summary
Resolves #1536
Examples
// Renders the Toast component with role equal alert and aria-live equal assertive
<ToastStack toastOptions={
{
ariaProps: {
role: 'alert',
"aria-live": 'assertive'
}
}
} />