UNPKG

reablocks

Version:
23 lines (21 loc) 754 B
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;