import type { LucideIcon } from 'lucide-react/dist/lucide-react'; import { forwardRef } from 'react'; export const VerifiedIcon: LucideIcon = forwardRef(({ size = 24, color = 'currentColor', ...props }, ref) => { return ( ); }); VerifiedIcon.displayName = 'VerifiedIcon';