UNPKG

@atlaskit/tokens

Version:

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

39 lines (38 loc) 907 B
/** * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen} * @codegen <<SignedSource::e6d2b4b5bf7fe4085d9ff5fa6ef38c0c>> * @codegenCommand yarn build tokens */ type TokenValue = string; type TokenValueOriginal = { fontWeight: string; fontSize: string; lineHeight: string; fontFamily: string; fontStyle: string; letterSpacing: string; }; 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;