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