demo-int-table/admin_front/presets/aura/toolbar/index.js

29 lines
566 B
JavaScript

export default {
root: {
class: [
// Flex & Alignment
'flex items-center justify-between flex-wrap',
'gap-2',
// Spacing
'p-3',
// Shape
'rounded-md',
// Color
'bg-surface-0 dark:bg-surface-900',
'border border-surface-200 dark:border-surface-700'
]
},
start: {
class: 'flex items-center'
},
center: {
class: 'flex items-center'
},
end: {
class: 'flex items-center'
}
};