mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-02-01 04:37:57 +01:00
refactor(module)!: implement design system with CSS variables (#2298)
This commit is contained in:
@@ -45,7 +45,7 @@ describe('Accordion', () => {
|
||||
['with collapsible', { props: { ...props, collapsible: false } }],
|
||||
['with trailingIcon', { props: { ...props, trailingIcon: 'i-heroicons-plus' } }],
|
||||
['with class', { props: { ...props, class: 'w-96' } }],
|
||||
['with ui', { props: { ...props, ui: { item: 'border-gray-300 dark:border-gray-700' } } }],
|
||||
['with ui', { props: { ...props, ui: { item: 'border-[--ui-border-accented]' } } }],
|
||||
// Slots
|
||||
['with leading slot', { props: { ...props, modelValue: '1' }, slots: { leading: () => 'Leading slot' } }],
|
||||
['with default slot', { props: { ...props, modelValue: '1' }, slots: { default: () => 'Default slot' } }],
|
||||
|
||||
Reference in New Issue
Block a user