Microsoft Logo

PreviousNext

Microsoft logo component with brand colors

Docs
elementsui

Preview

Loading preview…
registry/default/blocks/logos/microsoft-logo/components/logos/microsoft.tsx
export function MicrosoftLogo({ className }: { className?: string }) {
  return (
    <svg
      viewBox="0 0 256 256"
      xmlns="http://www.w3.org/2000/svg"
      width="256"
      height="256"
      preserveAspectRatio="xMidYMid"
      className={className || "w-8 h-8"}
    >
      <title>Microsoft Logo</title>
      <path fill="#F1511B" d="M121.666 121.666H0V0h121.666z" />
      <path fill="#80CC28" d="M256 121.666H134.335V0H256z" />
      <path fill="#00ADEF" d="M121.663 256.002H0V134.336h121.663z" />
      <path fill="#FBBC09" d="M256 256.002H134.335V134.336H256z" />
    </svg>
  );
}

Installation

npx shadcn@latest add @elements/microsoft-logo

Usage

import { MicrosoftLogo } from "@/components/ui/microsoft-logo"
<MicrosoftLogo />