mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-24 17:00:36 +01:00
feat(theme)!: migrate from heroicons to lucide (#2540)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -12,10 +12,10 @@ describe('Alert', () => {
|
||||
// Props
|
||||
['with title', { props }],
|
||||
['with description', { props: { ...props, description: 'Description' } }],
|
||||
['with icon', { props: { ...props, icon: 'i-heroicons-light-bulb' } }],
|
||||
['with icon', { props: { ...props, icon: 'i-lucide-lightbulb' } }],
|
||||
['with avatar', { props: { ...props, avatar: { src: 'https://github.com/benjamincanac.png' } } }],
|
||||
['with close', { props: { ...props, close: true } }],
|
||||
['with closeIcon', { props: { ...props, close: true, closeIcon: 'i-heroicons-trash' } }],
|
||||
['with closeIcon', { props: { ...props, close: true, closeIcon: 'i-lucide-trash' } }],
|
||||
...variants.map((variant: string) => [`with primary variant ${variant}`, { props: { ...props, variant } }]),
|
||||
...variants.map((variant: string) => [`with neutral variant ${variant}`, { props: { ...props, variant, color: 'neutral' } }]),
|
||||
['with as', { props: { ...props, as: 'article' } }],
|
||||
|
||||
Reference in New Issue
Block a user