How to use the Delete Shredder icon
import { DeleteShredderIcon } from "@/assets/icons/deleteshredderIcon"
export default function Example() {
return <DeleteShredderIcon width="32px" height="32px" />
}General icon
Copy the Delete Shredder icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
// Source: https://unpkg.com/lucide-static@1.25.0/icons/shredder.svg
// Asset license: Lucide ISC. Some Lucide glyphs derive from Feather under MIT; see the upstream license.
export const DeleteShredderIcon = ({ width = "40px", height = "40px", color = "currentColor", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" stroke={color} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true" role="img">
<path d="M4 13V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5" />
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
<path d="M10 22v-5" />
<path d="M14 19v-2" />
<path d="M18 20v-3" />
<path d="M2 13h20" />
<path d="M6 20v-3" />
</svg>
)
import { DeleteShredderIcon } from "@/assets/icons/deleteshredderIcon"
export default function Example() {
return <DeleteShredderIcon 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 general 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.