UNPKG

@atlaskit/tokens

Version:

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

52 lines (51 loc) 1.11 kB
/** * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen} * @codegen <<SignedSource::98b136d064017ef654213f5ffa7fafa2>> * @codegenCommand yarn build tokens */ type TokenValue = string | number | { radius: number; offset: { x: number; y: number; }; color: string; opacity: number; spread?: number; inset?: boolean; }[]; type TokenValueOriginal = string | { radius: number; offset: { x: number; y: number; }; color: string; opacity: number; spread?: number; inset?: boolean; }[]; type TokenAttributes = { group: string; state: string; introduced: string; description: string; suggest?: string[]; deprecated?: string; replacement?: string; }; type Token = { value: TokenValue; filePath: string; isSource: boolean; attributes: TokenAttributes; original: { value: TokenValueOriginal; attributes: TokenAttributes; }; name: string; path: string[]; cleanName: string; }; declare const tokens: Token[]; export default tokens;