better-chatbot / src /components /ui /microsoft-icon.tsx
Bot
Initial commit for HF Spaces
05c5ed5
Raw
History Blame Contribute Delete
445 Bytes
export function MicrosoftIcon({ className }: { className?: string }) {
return (
<svg
aria-hidden="true"
viewBox="0 0 23 23"
className={className}
data-view-component="true"
>
<path fill="currentColor" d="M1 1h10v10H1z" />
<path fill="currentColor" d="M12 1h10v10H12z" />
<path fill="currentColor" d="M1 12h10v10H1z" />
<path fill="currentColor" d="M12 12h10v10H12z" />
</svg>
);
}