How to use the Givenchy icon
import { GivenchyLogo } from "@/assets/icons/givenchyLogo"
export default function Example() {
return <GivenchyLogo width="32px" height="32px" />
}Brands icon
Copy the Givenchy 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/1083626463
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const GivenchyLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 260.131 195.682" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<g fillRule="evenodd" clipRule="evenodd"><path d="M74.444 55.693h50.24V44.635H85.191V11.047h27.99v10.747H102.44V33.59h22.094V0h-50.24zm111.246 0h-50.244V44.635h39.503V11.047h-27.996v10.747h10.741V33.59h-22.092V0h50.244zM74.444 66.761h50.24v11.046H85.191v33.589h27.99v-10.748H102.44V88.854h22.094v33.59h-50.24zm111.246 0h-50.244v11.046h39.503v33.589h-27.996v-10.748h10.741V88.854h-22.092v33.59h50.244zM225.119 160.635h7.21l10.424 13.477 10.015-13.488h7.363l-14.086 18.488v13.699h-6.582v-13.775zm-8.434-.012h5.812v32.883h-5.812v-14.182h-16.949v14.182h-5.808v-32.883h5.808v13.113h16.949zm-27.997 31.289v-6.701c-3.782 3.232-10.531 5.117-16.359 4.561-11.936-1.135-14.312-14.193-7.163-20.104 5.582-4.611 16.196-3.412 23.443 1.768v-6.615c-19.615-12.203-42.533 4.25-31.311 23.002 5.481 9.161 19.359 10.029 31.39 4.089m-68.896 2.119h6.025v-22.297l20.627 22.297h5.503v-33.408h-5.962l.191 22.564-20.621-22.424h-5.7zM48.52 160.623h7.333l10.629 25.068 10.554-25.068h7.337l-15.05 33.012h-5.458zm39.084 0h27.045v5.813H93.921v7.869h13.096v5.65H93.921v8.254h20.729v5.385H87.605v-32.971zm-47.337 0H45.7v33.109h-5.433zm-5.084 10.619-.086-6.809c-5.545-2.941-12.529-4.408-18.887-3.574-26.605 3.447-20.729 45.16 19.69 29.555v-12.6H20.877v5.396h9.12v3.627c-25.975 7.193-26.542-14.291-17.496-19 7.396-3.853 20.545.643 22.682 3.405"/></g>
</svg>
)
import { GivenchyLogo } from "@/assets/icons/givenchyLogo"
export default function Example() {
return <GivenchyLogo 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.