Toast
Toasts display contextual, temporary messages to the user
import { toasts } from "bronze-ui";
<Button
emphasis="high"
onClick={() => {
toasts.add({
title: "A title",
description: "A short description"
})
}}
>
Create toast
</Button>