@redocly/theme
Version:
Shared UI components lib
14 lines (13 loc) • 397 B
TypeScript
export interface TypographyProps {
color?: string;
fontFamily?: string;
fontSize?: string;
fontStyle?: string;
fontWeight?: string;
lineHeight?: string;
letterSpacing?: string;
marginBottom?: string;
marginTop?: string;
textAlign?: string;
}
export declare const Typography: import("styled-components").StyledComponent<"span", any, TypographyProps, never>;