@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
20 lines (19 loc) • 446 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SPACING_TO_PADDING = void 0;
/**
* Padding token mapping based on icon size and spacing value.
* Same mapping as the codemod `icon-spacing-to-box-primitive`.
*/
var SPACING_TO_PADDING = exports.SPACING_TO_PADDING = {
medium: {
compact: 'space.050',
spacious: 'space.050'
},
small: {
compact: 'space.025',
spacious: 'space.075'
}
};