mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
18 lines
394 B
TypeScript
18 lines
394 B
TypeScript
export default {
|
|
slots: {
|
|
root: '',
|
|
panel: 'flex',
|
|
handle: 'group relative shrink-0 focus-visible:outline-2 focus-visible:outline-primary data-[panel-resize-handle-enabled=false]:cursor-default'
|
|
},
|
|
variants: {
|
|
orientation: {
|
|
horizontal: {
|
|
handle: 'w-2 cursor-col-resize'
|
|
},
|
|
vertical: {
|
|
handle: 'h-2 cursor-row-resize'
|
|
}
|
|
}
|
|
}
|
|
}
|