fix(icons): update loading icon (#4163)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Alec Armbruster
2025-05-22 07:51:46 -07:00
committed by GitHub
parent 3243fb88f7
commit fe4e1f859d
27 changed files with 63 additions and 63 deletions

View File

@@ -31,7 +31,7 @@ describe('Textarea', () => {
['with loading and avatar', { props: { loading: true, avatar: { src: 'https://github.com/benjamincanac.png' } } }],
['with loading trailing', { props: { loading: true, trailing: true } }],
['with loading trailing and avatar', { props: { loading: true, trailing: true, avatar: { src: 'https://github.com/benjamincanac.png' } } }],
['with loadingIcon', { props: { loading: true, loadingIcon: 'i-lucide-sparkles' } }],
['with loadingIcon', { props: { loading: true, loadingIcon: 'i-lucide-loader' } }],
...sizes.map((size: string) => [`with size ${size}`, { props: { size } }]),
...variants.map((variant: string) => [`with primary variant ${variant}`, { props: { variant } }]),
...variants.map((variant: string) => [`with neutral variant ${variant}`, { props: { variant, color: 'neutral' } }]),