reablocks
Version:
Component library for React
23 lines (21 loc) • 754 B
TypeScript
import { FC } from 'react';
export interface TypographyLetterBlockProps {
fontFamily: string;
className?: string;
}
export declare const TypographyLetterBlock: FC<TypographyLetterBlockProps>;
export interface TypographySizeBlockProps {
sizes: any;
className?: string;
}
export declare const TypographySizeBlock: FC<TypographySizeBlockProps>;
export interface TypographyWeightBlockProps {
weights: any;
className?: string;
}
export declare const TypographyWeightBlock: FC<TypographyWeightBlockProps>;
export declare const TypographyBlocks: ({ families, sizes, weights }: {
families: Record<string, string>;
sizes: Record<string, string>;
weights: Record<string, string>;
}) => import("react/jsx-runtime").JSX.Element;