@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
4 lines • 335 B
JavaScript
var shapeProperties = ['borderTopLeftRadius', 'borderTopRightRadius', 'borderBottomRightRadius', 'borderBottomLeftRadius', 'borderRadius', 'borderStartStartRadius', 'borderStartEndRadius', 'borderEndStartRadius', 'borderEndEndRadius'];
export function isRadiusProperty(propertyName) {
return shapeProperties.includes(propertyName);
}