You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
874 B
26 lines
874 B
import type { VariantProps } from 'class-variance-authority'
|
|
import { cva } from 'class-variance-authority'
|
|
|
|
export { default as Alert } from './Alert.vue'
|
|
export { default as AlertDescription } from './AlertDescription.vue'
|
|
export { default as AlertTitle } from './AlertTitle.vue'
|
|
|
|
export const alertVariants = cva(
|
|
'relative w-full rounded-lg border p-4 flex items-center gap-3 [&>svg]:shrink-0 [&>svg]:text-foreground',
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default: 'bg-background text-foreground',
|
|
destructive:
|
|
'border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive',
|
|
error:
|
|
'bg-white/15 border-l-4 border-warning text-white [&>svg]:text-warning',
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: 'default',
|
|
},
|
|
}
|
|
)
|
|
|
|
export type AlertVariants = VariantProps<typeof alertVariants>
|
|
|