How to use the Cole Haan icon
import { ColeHaanLogo } from "@/assets/icons/colehaanLogo"
export default function Example() {
return <ColeHaanLogo width="32px" height="32px" />
}Brands icon
Copy the Cole Haan 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/1117294137
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const ColeHaanLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 522.1 57.1" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M94.2 0C78.4 0 66.5 12.7 66.5 28.5S78.3 57 94.2 57c15.8 0 27.7-12.7 27.7-28.5S110.1 0 94.2 0m0 48.5c-10.9 0-18.6-8.8-18.6-20s7.7-20 18.6-20 18.6 8.8 18.6 20-7.7 20-18.6 20m56.7-48h-9v56h33.6V48H151V.5zm55.6 32h12.7V24h-12.7V9h26.2V.5h-35.2v56h35.6V48h-26.6zM317 24h-23.1V.5h-9v56h9v-24H317v24h9V.5h-9zM513.1.5v39.4L491 .5h-9.9v56h9V17.9l22.1 38.6h9.9V.5zm-485.3 48c-10.9 0-18.6-8.8-18.6-20s7.7-20 18.6-20c6.8 0 11.2 3 14.8 7.6l6.4-5.8C44 4.1 36.8.1 27.7.1 11.9.1 0 12.8 0 28.6s11.8 28.5 27.7 28.5c10.1 0 18.5-5.2 23.3-13l-6.8-5.3c-2.8 5.6-8.7 9.7-16.4 9.7M367.9.5l-20.7 56h9.4l4.2-11.7h23.3l4.2 11.7h9.4L377 .5zm-4.1 35.9 8.6-23.9 8.6 23.9zM431.5.5l-20.7 56h9.4l4.2-11.7h23.3l4.2 11.7h9.4L440.6.5zm-4.1 35.9 8.6-23.9 8.5 23.9z"/>
</svg>
)
import { ColeHaanLogo } from "@/assets/icons/colehaanLogo"
export default function Example() {
return <ColeHaanLogo 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.