How to use the Longchamp icon
import { LongchampLogo } from "@/assets/icons/longchampLogo"
export default function Example() {
return <LongchampLogo width="32px" height="32px" />
}Brands icon
Copy the Longchamp 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/1114813586
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const LongchampLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 120 32" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M9.058 7.76H7.012v9.453h5.39v-1.326H9.058zM20.205 7.436c-2.187 0-3.965 2.243-3.965 5.009s1.778 5.009 3.965 5.009 3.965-2.243 3.965-5.009-1.778-5.009-3.965-5.009m0 8.663c-1.086 0-1.975-1.637-1.975-3.64 0-2.018.889-3.64 1.975-3.64s1.975 1.637 1.975 3.64-.889 3.64-1.975 3.64M61.474 15.069l-1.637-.931c-.325 1.171-.988 1.961-1.75 1.961-1.086 0-1.975-1.637-1.975-3.64 0-2.018.889-3.64 1.975-3.64.705 0 1.312.677 1.665 1.693l1.383-1.242c-.734-1.101-1.82-1.806-3.048-1.806-2.187 0-3.965 2.243-3.965 5.009s1.778 5.009 3.965 5.009c1.439-.014 2.695-.974 3.386-2.413zM45.714 13.22h1.171v2.102c-.282.48-.762.776-1.524.776-1.086 0-1.975-1.637-1.975-3.64 0-2.018.889-3.64 1.975-3.64.677 0 1.284.635 1.637 1.608l1.383-1.213c-.734-1.072-1.806-1.764-3.019-1.764-2.187 0-3.965 2.243-3.965 5.009s1.778 5.009 3.965 5.009c1.157 0 2.455-.621 3.443-1.608v-3.513h-3.104v.875zM34.554 12.839l-5.079-5.742v10.145h1.566v-5.277l5.122 5.573V7.746h-1.608zM71.746 11.683H68.43V7.761h-1.891v9.425h1.891v-4.205h3.316v4.205h1.891V7.761h-1.891zM78.49 17.242h1.608l.79-1.848h3.062l.691 1.848h2.13L82.693 7.168l-4.205 10.074zm3.09-3.104 1.072-2.836 1.016 2.836zM91.725 7.097v10.116h1.524v-4.995l2.596 3.175 2.37-3.132v4.952h1.947V7.111l-4.19 5.46zM109.658 7.76h-3.527v9.51h1.947v-2.737h1.594c1.778 0 3.217-1.51 3.217-3.386-.014-1.877-1.453-3.386-3.231-3.386zm-.042 5.376h-1.538V9.129h1.538c.79.254 1.383 1.044 1.383 1.989-.014.945-.593 1.778-1.383 2.018M68.628 22.053h.607v2.935h-.607zM62.617 23.168c0-.55-.367-1.072-.847-1.115h-2.116v2.935h.621v-.818h1.129l.522.818h.691l-.607-.974s.607-.296.607-.847zm-1.044.479h-1.298v-1.058h1.298c.212.085.367.282.367.522s-.155.451-.367.536M44.614 22.053h-2.116v2.935h.621v-.818h1.129c.705 0 1.213-.437 1.213-.988 0-.564-.367-1.086-.847-1.129m-.198 1.594h-1.298v-1.058h1.298a.57.57 0 0 1 .367.522.55.55 0 0 1-.367.536M51.711 22.053l-1.256 2.935h.593l.31-.72h1.467l.353.72h.677l-1.383-2.935zm-.127 1.693.466-1.115.55 1.115zM76.289 23.238c-1.002.042-.945-.254-.945-.325s-.056-.451.734-.466c.818 0 1.256.353 1.256.353l.226-.451c-.593-.339-1.284-.31-1.383-.31-.085 0-1.467-.042-1.383.917.071.959 1.524.818 1.961.818s.409.437.381.466c-.028.042-.056.325-.931.325s-1.256-.437-1.256-.437l-.254.466s.071.466 1.496.466 1.51-.734 1.496-1.016c0-.268-.395-.847-1.397-.804z"/>
</svg>
)
import { LongchampLogo } from "@/assets/icons/longchampLogo"
export default function Example() {
return <LongchampLogo 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.