import { memo } from "react" type SvgProps = React.ComponentPropsWithoutRef<"svg"> export const HeadingThreeIcon = memo(({ className, ...props }: SvgProps) => { return ( ) }) HeadingThreeIcon.displayName = "HeadingThreeIcon"