@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
11 lines (10 loc) • 313 B
TypeScript
import type { IHeading, IText } from '../ui';
declare type Response = {
getWeight: () => string;
getFontSize: () => string;
getLineHeight: () => string;
getColorText: () => string;
getClassName: () => string;
};
export declare function useTokens(props: IHeading | IText): Response;
export {};