28 lines
747 B
JavaScript
28 lines
747 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
function _export(target, all) {
|
|
for(var name in all)Object.defineProperty(target, name, {
|
|
enumerable: true,
|
|
get: all[name]
|
|
});
|
|
}
|
|
_export(exports, {
|
|
toolbarGroupClassNames: function() {
|
|
return toolbarGroupClassNames;
|
|
},
|
|
useToolbarGroupStyles_unstable: function() {
|
|
return useToolbarGroupStyles_unstable;
|
|
}
|
|
});
|
|
const _react = require("@griffel/react");
|
|
const toolbarGroupClassNames = {
|
|
root: 'fui-ToolbarGroup'
|
|
};
|
|
const useToolbarGroupStyles_unstable = (state)=>{
|
|
'use no memo';
|
|
state.root.className = (0, _react.mergeClasses)(toolbarGroupClassNames.root, state.root.className);
|
|
return state;
|
|
};
|