@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
10 lines (9 loc) • 413 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isBorderSizeProperty = isBorderSizeProperty;
var borderSizeProperties = ['borderWidth', 'outlineWidth', 'borderRightWidth', 'borderLeftWidth', 'borderTopWidth', 'borderBottomWidth', 'borderInlineWidth', 'borderBlockWidth'];
function isBorderSizeProperty(propertyName) {
return borderSizeProperties.includes(propertyName);
}