How to use the Bandcamp icon
import { BandcampLogo } from "@/assets/icons/bandcamplogo"
export default function Example() {
return <BandcampLogo width="32px" height="32px" />
}Brands icon
Copy the Bandcamp icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const BandcampLogo = ({ className, width = "40px", height = "40px" }) => (
<svg fill="currentColor" width={width} height={height} className={className} version="1.1" xmlns="http://www.w3.org/2000/svg" xmlnsXlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" enableBackground="new 0 0 512 512" xmlSpace="preserve">
<g id="c2be471c56fc5b4dd571614bb3052c8e">
<path display="inline" d="M354.27,407.291H0.5l157.231-302.582H511.5L354.27,407.291z"></path>
</g>
</svg>
);
import { BandcampLogo } from "@/assets/icons/bandcamplogo"
export default function Example() {
return <BandcampLogo 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.