How to use the Hermès icon
import { HermesLogo } from "@/assets/icons/hermesLogo"
export default function Example() {
return <HermesLogo width="32px" height="32px" />
}Brands icon
Copy the Hermès 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/1135950228
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const HermesLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 350.628 61.69" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<g fill="currentColor" fillRule="evenodd" clipRule="evenodd"><path d="M24.638 58.004v20.141h3.681v3.986h-11.45v-3.986h3.578V68.84H7.77v9.305h3.476v3.986H0v-3.986h3.579V58.004H0v-4.089h11.246v4.089H7.77v6.85h12.677v-6.85h-3.578v-4.089h11.45v4.089zM52.65 78.145v-5.42h4.09v9.406H33.533v-3.986h3.782V58.004h-3.782v-4.089H56.74v7.873h-3.988v-3.784H41.507v6.748h9.61v3.987h-9.61v9.406zM153.657 78.145v-5.42h4.089v9.406h-23.207v-3.986h3.783V58.004h-3.783v-4.089h23.105v7.873h-3.886v-3.784h-11.245v6.748h9.611v3.987h-9.611v9.406zM143.536 52.586l-2.249-2.454h8.28l2.045 2.454z" transform="translate(0 -93.956)scale(1.87417)"/><path d="M849.732 672.125c-5.364-1.344-9.006-1.149-14.563-2.873-4.79-1.728-5.748-4.601-5.748-6.516 0-2.109 2.109-7.282 9.772-7.282 7.666 0 12.838 5.173 13.03 9.58h7.472v-15.52h-7.281v3.446l.382.96v.19-.19c-.191 0-.382-.576-1.149-1.15v-.19c-2.108-1.918-6.515-4.217-13.03-4.217-7.854 0-17.052 4.981-17.052 14.369 0 9.194 6.516 12.262 12.262 13.796 5.557 1.529 8.43 1.529 13.223 2.873 4.597 1.149 7.663 4.022 7.663 8.238 0 3.83-2.49 9.006-12.456 9.006-9.771 0-13.793-5.366-14.944-12.838h-7.09v18.584h7.283v-3.448l-.193-.96s.193.575 1.149 1.149v.191c3.64 2.877 8.623 4.792 14.753 4.792 7.088 0 19.16-3.637 19.16-16.284.002-9.193-4.787-13.406-12.643-15.706" transform="translate(-511.746 -642.425)"/><path d="M98.553 58.004v20.141H94.77v3.986h11.553v-3.986h-3.578V58.413l.306.92 7.872 18.812h2.249l7.872-18.812.205-1.022.102 1.125v18.709h-3.578v3.986h11.45v-3.986h-3.783V58.004h3.783v-4.089H119l-6.85 16.562-.102.818-.205-.818-6.747-16.562H94.77v4.089z" transform="translate(0 -93.956)scale(1.87417)"/><path d="m674.034 694.926-.191-10.733c0-3.254-2.108-6.706-4.982-8.621-.575-.191-1.533-.576-2.3-.576.767 0 1.725 0 2.683-.384 2.875-1.34 6.323-4.981 6.323-11.303 0-4.792-1.915-8.43-5.365-10.923-3.258-2.297-6.897-2.873-10.73-2.873h-29.507v7.664h6.706v37.747h-6.706v7.47h21.077v-7.47h-6.706v-16.668h14.562c4.982.19 6.897 3.448 6.897 6.13l.576 18.009h14.369v-7.47h-6.706zm-13.604-23.95h-16.094v-13.795h15.138c1.722 0 3.64 0 5.172.575 1.916.96 3.642 3.064 3.642 6.321-.002 4.026-3.643 6.9-7.858 6.9" transform="translate(-511.746 -642.425)"/></g>
</svg>
)
import { HermesLogo } from "@/assets/icons/hermesLogo"
export default function Example() {
return <HermesLogo 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.