UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

5 lines 251 B
import { isBorderSizeProperty } from './is-border-size-property'; import { isRadiusProperty } from './is-radius-property'; export function isShapeProperty(propertyName) { return isRadiusProperty(propertyName) || isBorderSizeProperty(propertyName); }