How to use the Primark icon
import { PrimarkLogo } from "@/assets/icons/primarkLogo"
export default function Example() {
return <PrimarkLogo width="32px" height="32px" />
}Brands icon
Copy the Primark 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/1192721845
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const PrimarkLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 1825 260.85" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M33.64 62.48H11.78v52.16h6.29V93.26h15.56c11.1 0 18.33-5.75 18.33-15.22s-7.24-15.56-18.33-15.56zm-.27 25.23H18.08V67.95h15.29c8.32 0 12.31 3.79 12.31 10.08s-3.99 9.67-12.31 9.67zM106.37 77.56c0-8.73-6.16-15.09-16.78-15.09H68.82v52.16h6.22V93.25h12.65l12.11 21.38h6.97L94.46 92.71c7.58-1.83 11.91-7.78 11.91-15.15M75.04 87.78V67.89h13.8c7.17 0 11.3 3.32 11.3 10.01s-4.13 9.88-11.3 9.88zM124.84 62.48h6.29v52.16h-6.29zM178.01 108.75 159.2 62.47h-6.83v52.16h6.09V74.44c.54 1.96 1.42 4.53 2.64 7.44l13.6 32.75h6.49l13.67-32.81c1.15-2.84 2.1-5.41 2.64-7.37v40.19h6.09V62.48h-6.9l-18.67 46.28zM239.92 62.48l-20.91 52.16h6.63l5.48-14.28c7.98 2.57 16.03 2.57 24.02 0l5.55 14.28h6.63l-20.97-52.16Zm-6.7 32.61 8.52-21.79c.74-1.83 1.42-3.92 1.42-3.92s.68 2.1 1.42 3.92l8.46 21.79c-6.63 2.5-13.19 2.5-19.82 0M320.29 77.56c0-8.73-6.16-15.09-16.78-15.09h-20.77v52.16h6.22V93.25h12.58l12.18 21.38h6.9l-12.25-21.92c7.58-1.83 11.91-7.78 11.91-15.15zm-31.32 10.22V67.89h13.8c7.17 0 11.23 3.32 11.23 10.01s-4.06 9.88-11.23 9.88zM375.23 62.48h-7.31c-5.07 12.45-14.07 21.31-22.94 24.36V62.48h-6.29v52.16h6.29V93.6c3.11-1.08 6.22-2.77 9.27-4.8l15.22 25.84h7.31l-17.46-29.77c6.36-5.41 11.98-12.92 15.9-22.39z" transform="matrix(5 0 0 5 -58.9 -312.35)"/>
</svg>
)
import { PrimarkLogo } from "@/assets/icons/primarkLogo"
export default function Example() {
return <PrimarkLogo 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.