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