123456789101112131415161718192021222324 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- const genSpaceCompactStyle = token => {
- const {
- componentCls
- } = token;
- return {
- [componentCls]: {
- '&-block': {
- display: 'flex',
- width: '100%'
- },
- '&-vertical': {
- flexDirection: 'column'
- }
- }
- };
- };
- // ============================== Export ==============================
- var _default = exports.default = genSpaceCompactStyle;
|