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