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