How to use the Saint Laurent icon
import { SaintLaurentLogo } from "@/assets/icons/saintlaurentLogo"
export default function Example() {
return <SaintLaurentLogo width="32px" height="32px" />
}Brands icon
Copy the Saint Laurent 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/1251611228
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const SaintLaurentLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 183.81 18" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M9.35 7.51C5 6.37 4.24 6.2 4.24 4.89s1.4-1.95 2.59-1.95c1.8 0 3.27.53 3.4 2.59h3.66c0-4-3.3-5.53-6.89-5.53C3.89 0 .58 1.69.58 5.2c0 3.23 2.58 4.21 5.13 4.89s5.1 1 5.1 2.84-2 2.14-3.34 2.14c-2 0-3.81-.89-3.81-3.18H0C-.06 16.11 3.52 18 7.31 18c4.67 0 7.14-2.36 7.14-5.52 0-3.89-3.84-4.68-5.1-4.97M32.47.4h3.77v17.2h-3.77ZM50.05 11.93 42.83.4h-3.75v17.18h3.53V6.08h.06l7.15 11.5h3.77v-14h5v14h3.78v-14h5.16V.4H50.05ZM20.91.4l-6.53 17.18h3.84l1.34-3.83H26l1.3 3.83h3.9L24.79.4Zm-.36 10.54 2.23-6.31h.06L25 10.94ZM144 10.2h8.33V7.26H144V3.57h9V.4h-12.81v17.18h13v-3.17H144ZM166.38.4v11.53L159.16.4h-3.74v17.18H159V6.08l7.14 11.5h3.78v-14h5v14h3.77v-14h5.15V.4ZM134.74 9.51v-.06a4.23 4.23 0 0 0 2.72-4.31 4.72 4.72 0 0 0-5-4.74h-9.26v17.18h3.77v-6.71h3.78c1.9 0 2.59.79 2.87 2.59a18 18 0 0 0 .6 4.12H138c-.68-1-.65-3-.72-4.06-.15-1.73-.68-3.53-2.54-4.01m-3.65-1.33H127V3.34h4.13c1.69 0 2.6.72 2.6 2.38s-.97 2.45-2.64 2.45ZM116.62 11.08c0 2.55-.86 3.73-3.55 3.73-3.06 0-3.53-1.85-3.53-3.73V.4h-3.78v10.68c0 4.67 2.69 6.9 7.32 6.9s7.33-2.26 7.33-6.9V.4h-3.77v10.68ZM94.87.4l-6.53 17.18h3.83l1.34-3.83h6.43l1.29 3.83h3.92L98.74.4Zm-.37 10.54 2.24-6.31h.06l2.2 6.31ZM79 .4h-3.82v17.18h12.15v-3.17H79Z"/>
</svg>
)
import { SaintLaurentLogo } from "@/assets/icons/saintlaurentLogo"
export default function Example() {
return <SaintLaurentLogo 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.