How to use the Mango icon
import { MangoLogo } from "@/assets/icons/mangoLogo"
export default function Example() {
return <MangoLogo width="32px" height="32px" />
}Brands icon
Copy the Mango icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
// Source: https://commons.wikimedia.org/wiki/Special:PermanentLink/1114794416
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const MangoLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 288 66.2" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M266.455 93.222h-1.761l1.761 1.424v20.857h7.355l-1.838-1.463V94.65l1.818-1.428zM252.283 93.222h4.858l-1.619 1.428v9.55h-1.62v-9.55zM261.666 93.208l2.597 7.433-6.266 14.78-5.628.001zM277.434 93.136h4.889l-1.614 1.425 3.117 13.79h-1.596l-3.182-13.79z" transform="matrix(2.64305 0 0 -2.64305 -664.653 309.32)"/><path d="m287.057 99.892 1.365-5.303-1.445-1.349h7.399l-6.217 22.157h-5.128l3.721-14.322c.011-.005-3.567.005-3.567.005v-1.186zM350.525 92.526c-4.479.723-8.178 5.887-8.178 12.107 0 5.311 2.591 10.201 6.363 11.518l-.003-21.64zM351.488 116.151c4.479-.723 8.177-5.888 8.177-12.107 0-5.311-2.591-10.202-6.363-11.519l.004 21.64zM337.356 104.655h-8.477l2.415-1.938V92.588s6.062 1.466 6.062 12.067M328.415 92.584c-4.48.723-8.178 5.888-8.178 12.108 0 5.311 2.591 10.201 6.363 11.518l-.003-21.585v-.055zM328.898 116.221s3.118.014 5.55-2.206l2.431 1.7.001-7.451s-2.941 6.455-7.982 6.434zM298.205 93.24h4.866l-1.614 1.519v11.964h-1.638V94.759zM298.208 115.397l12.757-22.266h3.66v3.831l-10.303 18.435zM316.265 115.45h-4.866l1.615-1.518v-10.994h1.637v10.994z" transform="matrix(2.64305 0 0 -2.64305 -664.653 309.32)"/>
</svg>
)
import { MangoLogo } from "@/assets/icons/mangoLogo"
export default function Example() {
return <MangoLogo 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.