mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 20:19:26 +01:00
22 lines
432 B
TypeScript
22 lines
432 B
TypeScript
export function useSuccessToast(title: string, color?: string, description?: string) {
|
|
const toast = useToast()
|
|
|
|
toast.add({
|
|
title,
|
|
description,
|
|
color: color || 'green',
|
|
icon: 'i-ph:check-circle-duotone',
|
|
})
|
|
}
|
|
|
|
export function useErrorToast(title: string, description?: string) {
|
|
const toast = useToast()
|
|
|
|
toast.add({
|
|
title,
|
|
description,
|
|
color: 'red',
|
|
icon: 'i-ph:x-circle-duotone',
|
|
})
|
|
}
|