How to use the Calvin Klein icon
import { CalvinKleinLogo } from "@/assets/icons/calvinkleinLogo"
export default function Example() {
return <CalvinKleinLogo width="32px" height="32px" />
}Brands icon
Copy the Calvin Klein 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/1115267255
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const CalvinKleinLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 623 150" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="m227.1 108 21.2-46.6h8L227.1 125l-29.3-63.6h8.1zM293 61.3h-7.2v59.8h7.2V83.3c0-10.3 7.6-17 17-17s16.6 7.6 16.6 17v37.8h7.2V83.3c0-13.2-10.7-23.9-23.9-23.9-6.6 0-13.2 2.5-16.9 7.7zm94.5 5.6 38.1-41.4h-9.8l-40 43.5V25.5h-7.2v95.6h7.2V79.6l6.7-7.2 34 48.7h8.8zM190.6 25.5h-7.2v95.6h7.2zm252.9 0h-7.2v95.6h7.2zm113.6 35.8H550v59.8h7.2V83.3c0-10.3 7.6-17 17-17s16.6 7.6 16.6 17v37.8h7.2V83.3c0-13.2-10.7-23.9-23.9-23.9-6.6 0-13.2 2.5-16.9 7.7v-5.8zm-419.4 54.4c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6m25.1-5.2v10.6h7.2V61.3h-7.2V72v-.1c-5.8-7.6-14.8-12.4-25-12.4-17.4 0-31.5 14.1-31.5 31.5s14.1 31.5 31.5 31.5c10.2 0 19.3-4.9 25-12.4zM510 84.4h-47.3l-.1.1c2.9-10.3 12.4-18 23.7-18 11.4-.1 20.9 7.5 23.7 17.9m-1.5 17.6c-4.1 8.1-12.4 13.6-22 13.6-13.4 0-24.3-10.7-24.6-24.1h56.2V91c0-17.4-14.1-31.5-31.5-31.5S455.1 73.6 455.1 91s14.1 31.5 31.5 31.5c12.4 0 23.2-7.2 28.4-17.7zM32.6 73.8c0-22.6 18.3-41.4 41-41.4 9.6 0 18.5 3.3 25.4 8.9l5.2-5.4C95.9 29.1 85.2 25 73.5 25 46.7 25 25 47.1 25 73.8c0 26.8 21.7 48.8 48.5 48.8 11.6 0 22.3-4.1 30.7-10.9l-5.2-5.4c-7 5.5-15.8 8.9-25.4 8.9-22.6 0-41-18.7-41-41.4m240.3-12.5h-7.2v59.8h7.2zm-3.4-27.1c2.4 0 4.4-2 4.4-4.4s-2-4.4-4.4-4.4-4.4 2-4.4 4.4 1.9 4.4 4.4 4.4m267 27.1h-7.2v59.8h7.2zM533 34.2c2.4 0 4.4-2 4.4-4.4s-2-4.4-4.4-4.4-4.4 2-4.4 4.4c.1 2.4 2 4.4 4.4 4.4"/>
</svg>
)
import { CalvinKleinLogo } from "@/assets/icons/calvinkleinLogo"
export default function Example() {
return <CalvinKleinLogo 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.