UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

28 lines 673 B
const legacyElevation = { e100: { background: 'elevation.surface.raised', shadow: 'elevation.shadow.raised' }, e200: { background: 'elevation.surface.overlay', shadow: 'elevation.shadow.overlay' }, e300: { background: 'elevation.surface.overlay', shadow: 'elevation.shadow.overlay' }, e400: { background: 'elevation.surface.overlay', shadow: 'elevation.shadow.overlay' }, e500: { background: 'elevation.surface.overlay', shadow: 'elevation.shadow.overlay' } }; export const isLegacyElevation = name => { if (Object.keys(legacyElevation).includes(name)) { return legacyElevation[name]; } return false; };