How to use the Microsoft icon
import { MicrosoftLogo } from "@/assets/icons/microsoftLogo"
export default function Example() {
return <MicrosoftLogo width="32px" height="32px" />
}Brands icon
Copy the Microsoft icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const MicrosoftLogo = ({ width = "40px", height = "40px", color = "#000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlnsXlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="Dribbble-Light-Preview" transform="translate(-220.000000, -7519.000000)" fill={color}>
<g id="icons" transform="translate(56.000000, 160.000000)">
<path d="M174,7379 L184,7379 L184,7370 L174,7370 L174,7379 Z M164,7379 L173,7379 L173,7370 L164,7370 L164,7379 Z M174,7369 L184,7369 L184,7359 L174,7359 L174,7369 Z M164,7369 L173,7369 L173,7359 L164,7359 L164,7369 Z" id="microsoft-[#150]"></path>
</g>
</g>
</g>
</svg>
);
import { MicrosoftLogo } from "@/assets/icons/microsoftLogo"
export default function Example() {
return <MicrosoftLogo width="32px" height="32px" />
}Built for the web
This copy-ready component works in React and Next.js projects, and the SVG can be adapted for any interface.
Looking for a similar mark? Browse the related icons below or explore the full brands collection.
Yes. You can copy the JSX component and use it in React and Next.js projects.
Yes. Edit the SVG attributes or pass className, width, height and color props depending on the component.