UNPKG

@atlaskit/tokens

Version:

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

25 lines (24 loc) 662 B
/** * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen} * @codegen <<SignedSource::61e5f6306081ee114d542ad7b43b7e1c>> * @codegenCommand yarn build tokens */ type TokenValue = string | number | Record<string, any>; type TokenValueOriginal = string | number | Record<string, any>; type TokenAttributes = { group: string; }; type Token = { value: TokenValue; filePath: string; isSource: boolean; attributes: TokenAttributes; original: { value: TokenValueOriginal; attributes: TokenAttributes; }; name: string; path: string[]; }; declare const tokens: Token[]; export default tokens;