mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-25 01:10:40 +01:00
feat(theme)!: migrate from heroicons to lucide (#2540)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -17,10 +17,10 @@ describe('Switch', () => {
|
||||
['with name', { props: { name: 'name' } }],
|
||||
['with value', { props: { value: 'value' } }],
|
||||
['with disabled', { props: { disabled: true } }],
|
||||
['with checkedIcon', { props: { checkedIcon: 'i-heroicons-check-20-solid', defaultValue: true } }],
|
||||
['with uncheckedIcon', { props: { uncheckedIcon: 'i-heroicons-x-mark-20-solid' } }],
|
||||
['with checkedIcon', { props: { checkedIcon: 'i-lucide-check', defaultValue: true } }],
|
||||
['with uncheckedIcon', { props: { uncheckedIcon: 'i-lucide-x' } }],
|
||||
['with loading', { props: { loading: true } }],
|
||||
['with loadingIcon', { props: { loading: true, loadingIcon: 'i-heroicons-sparkles' } }],
|
||||
['with loadingIcon', { props: { loading: true, loadingIcon: 'i-lucide-sparkles' } }],
|
||||
['with label', { props: { label: 'Label' } }],
|
||||
['with required', { props: { label: 'Label', required: true } }],
|
||||
['with description', { props: { label: 'Label', description: 'Description' } }],
|
||||
|
||||
Reference in New Issue
Block a user