UNPKG

@atlaskit/tokens

Version:

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

32 lines (31 loc) 766 B
/** * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen} * @codegen <<SignedSource::139953049673c5a74ab686e4a2ddaf50>> * @codegenCommand yarn build tokens */ type TokenValue = string; type TokenValueOriginal = 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;