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