import React from 'react' interface AppleIconProps { width?: number | string height?: number | string className?: string } /** @deprecated Use icons from icons-v2-generated instead. */ export function AppleIcon({ width = 24, height = 24, className = "text-current" }: AppleIconProps) { return ( ) }