interface TypographyProps {
    bold?: boolean;
    color:
        | "gray"
        | "red"
        | "black"
        | "blue";
    size:
        | "xs"
        | "sm"
        | "base"
        | "lg"
        | "xl"
        | "2xl"
        | "3xl"
        | "4xl"
        | "5xl"
        | "6xl";
    text: string;
}

Properties

Properties

bold?: boolean
color:
    | "gray"
    | "red"
    | "black"
    | "blue"
size:
    | "xs"
    | "sm"
    | "base"
    | "lg"
    | "xl"
    | "2xl"
    | "3xl"
    | "4xl"
    | "5xl"
    | "6xl"
text: string