UNPKG

@atlaskit/tokens

Version:

Design tokens are the single source of truth to name and store design decisions.

4 lines 194 B
const themeKinds = ['light', 'dark', 'spacing', 'typography', 'shape', 'motion']; export const isThemeKind = themeKind => { return themeKinds.find(kind => kind === themeKind) !== undefined; };