fix(icons): make loading icon clockwise (#2797)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Guillaume Chau
2024-11-28 15:18:14 +01:00
committed by GitHub
parent ed2722257a
commit bc2bcb30d9
18 changed files with 34 additions and 34 deletions

View File

@@ -71,7 +71,7 @@ describe('Button', () => {
const icon = wrapper.findComponent({ name: 'Icon' })
expect(icon.classes()).toContain('animate-spin')
expect(icon?.vm?.name).toBe('i-lucide-refresh-ccw')
expect(icon?.vm?.name).toBe('i-lucide-refresh-cw')
resolve?.(null)
})
@@ -102,7 +102,7 @@ describe('Button', () => {
const icon = wrapper.findComponent({ name: 'Icon' })
expect(icon.classes()).toContain('animate-spin')
expect(icon?.vm?.name).toBe('i-lucide-refresh-ccw')
expect(icon?.vm?.name).toBe('i-lucide-refresh-cw')
resolve?.(null)
})