import { cn } from "../../shared/utils/cn"; import { BaseTypography, type BaseTypographyProps } from "./BaseTypography"; type TypographyProps = Omit; type HeadingTypographyProps = Omit; export const Typography = { H1: ({ children, className, ...props }: HeadingTypographyProps) => ( {children} ), H2: ({ children, className, ...props }: HeadingTypographyProps) => ( {children} ), H3: ({ children, className, ...props }: HeadingTypographyProps) => ( {children} ), H4: ({ children, className, ...props }: HeadingTypographyProps) => ( {children} ), H5: ({ children, className, ...props }: HeadingTypographyProps) => ( {children} ), H6: ({ children, className, ...props }: HeadingTypographyProps) => ( {children} ), Text: ({ children, className, ...props }: TypographyProps) => ( {children} ), Code: ({ children, className, ...props }: TypographyProps) => ( {children} ), };