import React from 'react' interface ShieldCheckIconProps { className?: string size?: number color?: string strokeWidth?: number } /** @deprecated Use icons from icons-v2-generated instead. */ export function ShieldCheckIcon({ className = '', size = 24, color = 'white', strokeWidth = 1.5 }: ShieldCheckIconProps) { return ( ) }