@atlaskit/tokens
Version:
Design tokens are the single source of truth to name and store design decisions.
20 lines (19 loc) • 539 B
TypeScript
/**
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
*
* Metadata for generation of `@atlaskit/ads-mcp` and https://atlassian.design/llms-tokens.txt.
*
* @codegen <<SignedSource::ae4acbb8ddfe6f3a0c28dc3479fd9d0d>>
* @codegenCommand yarn build tokens
*/
export interface Token {
name: string;
path: string[];
description: string;
exampleValue?: string | number;
usageGuidelines: {
usage: string;
cssProperties: string[];
};
}
export declare const tokens: Token[];