@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
11 lines (10 loc) • 462 B
TypeScript
import type { SemanticTokenDefinition, TokenCategory, TokenDefinition, TokenDictionary } from "./types";
interface Options {
prefix?: string | undefined;
breakpoints?: Record<string, string> | undefined;
tokens?: TokenDefinition | undefined;
semanticTokens?: SemanticTokenDefinition | undefined;
}
export declare function createTokenDictionary(options: Options): TokenDictionary;
export declare const tokenCategories: TokenCategory[];
export {};