mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-26 18:00:43 +01:00
feat(theme)!: migrate from heroicons to lucide (#2540)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -20,11 +20,11 @@ describe('Pagination', () => {
|
||||
['with showEdges', { props: { ...props, showEdges: true } }],
|
||||
['with siblingCount', { props: { ...props, siblingCount: 1, showEdges: true, page: 5 } }],
|
||||
['without showControls', { props: { ...props, showControls: false } }],
|
||||
['with firstIcon', { props: { ...props, firstIcon: 'i-heroicons-arrow-left' } }],
|
||||
['with prevIcon', { props: { ...props, prevIcon: 'i-heroicons-arrow-small-left' } }],
|
||||
['with nextIcon', { props: { ...props, nextIcon: 'i-heroicons-arrow-small-right' } }],
|
||||
['with lastIcon', { props: { ...props, lastIcon: 'i-heroicons-arrow-right' } }],
|
||||
['with ellipsisIcon', { props: { ...props, ellipsisIcon: 'i-heroicons-ellipsis-vertical', siblingCount: 1, showEdges: true, page: 5 } }],
|
||||
['with firstIcon', { props: { ...props, firstIcon: 'i-lucide-arrow-left' } }],
|
||||
['with prevIcon', { props: { ...props, prevIcon: 'i-lucide-arrow-left' } }],
|
||||
['with nextIcon', { props: { ...props, nextIcon: 'i-lucide-arrow-right' } }],
|
||||
['with lastIcon', { props: { ...props, lastIcon: 'i-lucide-arrow-right' } }],
|
||||
['with ellipsisIcon', { props: { ...props, ellipsisIcon: 'i-lucide-ellipsis-vertical', siblingCount: 1, showEdges: true, page: 5 } }],
|
||||
...sizes.map((size: string) => [`with size ${size}`, { props: { ...props, size } }]),
|
||||
...variants.map((variant: string) => [`with neutral variant ${variant}`, { props: { ...props, variant } }]),
|
||||
...variants.map((variant: string) => [`with primary variant ${variant}`, { props: { ...props, variant, color: 'primary' } }]),
|
||||
|
||||
Reference in New Issue
Block a user