@ant-design/x
Version:
Craft AI-driven interfaces effortlessly
23 lines (22 loc) • 460 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.genDividerBubbleStyle = void 0;
const genDividerBubbleStyle = token => {
const {
componentCls
} = token;
return {
[componentCls]: {
'&-divider': {
width: '100%',
justifyContent: 'center',
[`& ${componentCls}-body`]: {
width: '100%'
}
}
}
};
};
exports.genDividerBubbleStyle = genDividerBubbleStyle;