Toast component is using radix toast
direction: 'bottom-left' | 'bottom-right' | 'bottom-center' | 'top-left' | 'top-right' | 'top-center'
kind: 'primary' | 'secondary' | 'tertiary' | 'info' | 'warning' | 'error' | 'success'
open: boolean
onOpenChange: (open: boolean) => void
1import {2Button,3H4,4Toast,5ToastProvider,6CheckIcon,7EyeClosedIcon,8} from '@finetwork/ui'9import { useState } from 'react'10import { styled } from '../styles/stitches.config'1112const kinds = [13'primary',14'secondary',15'tertiary',16'success',17'warning',18'error',19'info',20]2122const StyledContainer = styled('div', {23display: 'grid',24gridAutoFlow: 'column',25alignItems: 'center',26gap: '70px',27justifyContent: 'space-around',28padding: '0px 30px',29})3031export const StyledButton = styled(Button, {32margin: '0.1rem 1rem',33variants: {34button: {35primary: {},36},37},38compoundVariants: [39{40button: 'primary',41css: {42backgroundColor: '#fff',43'&:hover': {44backgroundColor: '$primary100',45},46},47},48],49})5051export const StyledCheckIcon = styled(CheckIcon, {52color: '$primary',53width: 20,54height: 20,55})5657export const StyledCopyIcon = styled(EyeClosedIcon, {58color: '$primary',59width: 20,60height: 20,61})6263export const ToastPlayground = () => {64const [notifications, setNotifications] = useState([])65// // If you want to remove notifications from tree components66// useEffect(() => {67// if (notifications.length > 0) {6869// // setTimeout to not remove animation70// setTimeout(() => {71// setNotifications((prev) => prev.filter((n) => n.show))72// }, 2000)73// }7475// }, [notifications])76return (77<ToastProvider direction="top-center">78<div>79<Button80onClick={() =>81setNotifications((prev) => [82...prev,83{84id: prev.length + 1,85show: true,86kind: kinds[Math.floor(Math.random() * kinds.length)],87copied: false,88},89])90}91size="small"92>93Open toast94</Button>95</div>96{notifications.map((notification) => (97<Toast98withProgressBar={true}99closeable={true}100duration={15000}101key={notification.id}102kind={notification.kind}103open={notification.show}104onOpenChange={() => {105setNotifications((prev) =>106prev.map((n) =>107n.id === notification.id108? {109...n,110show: false,111}112: n113)114)115}}116>117<StyledContainer>118<H4 kind="primary">Hello world!</H4>119<StyledButton120button="primary"121shape="circle"122onClick={() => {123setNotifications((prev) =>124prev.map((n) =>125n.id === notification.id126? {127...n,128copied: true,129}130: n131)132)133}}134>135{notification.copied ? <StyledCheckIcon /> : <StyledCopyIcon />}136</StyledButton>137</StyledContainer>138</Toast>139))}140</ToastProvider>141)142}