How to use the Wrangler icon
import { WranglerLogo } from "@/assets/icons/wranglerLogo"
export default function Example() {
return <WranglerLogo width="32px" height="32px" />
}Brands icon
Copy the Wrangler 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/1114065312
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const WranglerLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 150 43.6" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="m6.7 0 5.7 13.8h.4L19.1.4h.4l6.7 13.2h.4L32.3 0h6.3v.2l-11.5 30h-.3l-7.1-15.7h-.4l-6.9 15.7H12L0 0zM107.9 0h6.2v28.9h-6.2zM47.1 5.7h2.3V11c-1.3 0-6.3 1.2-6.3 4v13.6h-5.9V6h5.9v1.3c2.1-.5 2.4-1.6 4-1.6M137.8 6h5.9v1.7c.5-.2 1.2-1.5 4.2-1.7h2.1v5.6c-2.9-.2-6.5 1.1-6.5 3.8V29h-5.7zM126.6 5.6c5.1 0 8.4 3.5 10.3 6.6l-14.6 10.2c1.3 1.1 2.5 2 4.1 2.1 2.3 0 4.2-.7 7-3.4.1 0 2.3 4.5 2.3 4.5 0 .2-4.3 3.9-9.2 3.9-9.1 0-11.6-9.1-11.6-11.2v-2.7c0-3 3.3-10 11.7-10m-6.3 10.8.1 1.7 8.6-5.9c-.4-.6-1.7-1.3-3.3-1.3-4.5 0-5.4 4.9-5.4 5.5M51.7 6h13v22.8h-5.2v-1.4c-.9.3-2.4 1.5-5 1.4-4.6-.1-7.5-3.7-7.6-7.9-.1-3.6 2.6-7.9 7.4-7.9 3.8 0 4.4.8 5.1 1.1v-3.2h-9c.6-2.4.8-3 1.3-4.9m.6 15.1c0 1 1.5 2.6 3.1 2.6 2.4 0 3.3-1.8 3.3-2.3 0-1.6-1-3.2-3.2-3.1-3-.1-3.2 1.8-3.2 2.8M95.3 5.5h11.9v.6c-.7 2.3-1.2 3.9-1.3 4.9H104c.1.4.8 3 .8 3.6v1.9c0 2.6-2 5-2.2 5.2 0 .1 3.7 3.3 4.4 8.6.1.6 0 2.9-.2 3.6-1.6 5.8-5.4 8.3-8.8 9.2-1.2.4-4 .4-4.9.3-.4-.1-3.3-.2-7.4-4.3l4.2-4.3c1.3 2 3.4 2.8 5.2 2.8 3.5 0 6.1-3 6.1-6 0-3.7-2.5-6.6-6.7-6.5-3 0-4.2 2.6-4.6 3l-4.7-3.7-.2-.1v4.4h-6.1V14.9c0-.2-.2-3-3.1-3-2.7 0-4 2-4 4.3v12.6h-5.9V6h5.9v1.5c1.6-.8 2.6-1.6 5.7-1.6 4.1 0 7.6 3.5 7.5 6.9v11.4c.2-.1 2.1-2 2.6-2.5 0 0-2.1-2.8-2.1-5v-2.1c-.1-2.9 3.2-9.1 9.8-9.1m-3.8 9.8c0 2.7 1.9 4 3.8 4 1.6 0 3.8-1.6 3.8-3.8 0-1.2-1.2-3.8-3.8-3.8-2.1 0-3.8 1.6-3.8 3.6M116.5.8c-.3.3-.5.6-.5 1s.2.8.5 1c.3.3.7.4 1.1.4s.8-.1 1.1-.4.5-.6.5-1-.2-.8-.5-1c-.3-.3-.7-.4-1.1-.4s-.8.1-1.1.4m2.4 2.3c-.4.3-.8.5-1.3.5s-1-.2-1.3-.5-.5-.7-.5-1.2.2-.9.5-1.2c.4-.3.8-.5 1.3-.5s1 .2 1.3.5c.4.3.5.7.5 1.2.1.4-.1.8-.5 1.2m-.9-1.9c-.1 0-.2-.1-.4-.1h-.3v.7h.6c.1 0 .2-.2.2-.3s-.1-.2-.1-.3m-.4-.3c.3 0 .4 0 .6.1s.3.2.3.5c0 .2-.1.3-.2.4-.1 0-.2.1-.3.1.2 0 .3.1.4.2s.1.2.1.3v.3h-.3v-.2c0-.2-.1-.4-.2-.4s-.2-.1-.4-.1h-.3v.7h-.4V.9z"/>
</svg>
)
import { WranglerLogo } from "@/assets/icons/wranglerLogo"
export default function Example() {
return <WranglerLogo 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.