How to use the Topshop icon
import { TopshopLogo } from "@/assets/icons/topshopLogo"
export default function Example() {
return <TopshopLogo width="32px" height="32px" />
}Brands icon
Copy the Topshop 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/1114797076
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const TopshopLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 458.9 68" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M315.1 66.6h-3.8V35.1h-38.9v31.5h-3.7V1h3.7v30.6h38.9V1h3.8zM245.7 50.6c0 11.6-8.6 17.4-20.7 17.4-8.6 0-15.7-3-21.2-7.6l2.6-2.8c5.5 4.5 11.4 7.1 18.9 7.1 9 0 16.7-3.7 16.7-13.8 0-7-3.6-13.5-17.6-16.7-15-3.5-19-9.3-19-17.7 0-9.4 7.3-16 19.8-16 8.7 0 14 2.4 19.2 6.1l-2.5 2.9c-4.8-3.5-9.5-5.6-17-5.6C214 3.7 209 9.5 209 16.1c0 6.5 2.5 11.3 17 14.6 15.4 3.6 19.7 11 19.7 19.9M455 20.7c0-11-6.6-16.1-18.1-16.1h-18.5v32.6h17.3c12.8 0 19.3-5.5 19.3-16.5m3.9-.2c0 13.1-8.7 20.1-23.2 20.1h-17.3v26.3h-3.8V1.3h22.5c13 0 21.8 5.7 21.8 19.2M118 33.8c0-19.2-11.4-30.3-25.1-30.3S67.8 14.6 67.8 33.8 79.2 64.1 93 64.1c13.6 0 25-11.1 25-30.3m3.8 0c0 21-12.7 33.8-28.9 33.8S64 54.8 64 33.8C64 12.9 76.7 0 92.9 0s28.9 12.8 28.9 33.8M183.1 20.8c0-11-6.6-16.1-18.1-16.1h-18.5v32.6h17.3c12.8 0 19.3-5.5 19.3-16.5m3.9-.2c0 13.1-8.7 20.1-23.2 20.1h-17.3V67h-3.8V1.4h22.5c13 0 21.8 5.7 21.8 19.2M390 33.8c0-19.2-11.4-30.3-25.1-30.3s-25.1 11.1-25.1 30.3 11.4 30.3 25.2 30.3c13.6 0 25-11.1 25-30.3m3.8 0c0 21-12.7 33.8-28.9 33.8S336 54.8 336 33.8C336 12.9 348.7 0 364.9 0s28.9 12.8 28.9 33.8M56 4.9H29.9V67h-3.8V4.9H0V1.4h56z"/>
</svg>
)
import { TopshopLogo } from "@/assets/icons/topshopLogo"
export default function Example() {
return <TopshopLogo 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.