mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
fix(icons): make loading icon clockwise (#2797)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -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)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user