mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-28 02:40:35 +01:00
fix(module): stop using tailwind's shorthand arbitrary variable syntax (#2366)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -46,7 +46,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-[--ui-border-accented]' } } }],
|
||||
['with ui', { props: { ...props, ui: { item: 'border-[var(--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