feat(theme)!: migrate from heroicons to lucide (#2540)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Alex
2024-11-06 16:59:19 +05:00
committed by GitHub
parent e3092b6b40
commit a6c1a6c587
177 changed files with 2245 additions and 2245 deletions

View File

@@ -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' } }]),