import React from 'react' interface MsIconProps { width?: number | string height?: number | string className?: string } export function MicrosoftIcon({ width = 24, height = 24, className = "text-current" }: MsIconProps) { return ( ) }