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