feat(module)!: migrate to reka-ui (#2448)

This commit is contained in:
Benjamin Canac
2024-12-03 16:11:32 +01:00
committed by GitHub
parent c440c91a29
commit 81ac076219
229 changed files with 13487 additions and 13466 deletions

View File

@@ -10,9 +10,9 @@ describe('Kbd', () => {
it.each([
// Props
['with value', { props: { value: 'K' } }],
['with as', { props: { value: 'K', as: 'span' } }],
...sizes.map((size: string) => [`with size ${size}`, { props: { value: 'K', size } }]),
...variants.map((variant: string) => [`with variant ${variant}`, { props: { value: 'K', variant } }]),
['with as', { props: { value: 'K', as: 'span' } }],
['with class', { props: { value: 'K', class: 'font-bold' } }],
// Slots
['with default slot', { slots: { default: () => 'Default slot' } }]