import clsx from "clsx" import type { ComponentProps } from "react" /** * @deprecated still being used in app, remove after refactor typography on app * Use {@link Text} component instead */ export const H2 = ({ children, className, ...props }: ComponentProps<"h2">) => { return (

{children}

) } H2.displayName = "H2"