square dashed icon
Free square dashed SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface set.
Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M5 3a2 2 0 0 0-2 2"/>
<path d="M19 3a2 2 0 0 1 2 2"/>
<path d="M21 19a2 2 0 0 1-2 2"/>
<path d="M5 21a2 2 0 0 1-2-2"/>
<line x1="9" y1="3" x2="10" y2="3"/>
<line x1="14" y1="3" x2="15" y2="3"/>
<line x1="9" y1="21" x2="10" y2="21"/>
<line x1="14" y1="21" x2="15" y2="21"/>
<line x1="3" y1="9" x2="3" y2="10"/>
<line x1="21" y1="9" x2="21" y2="10"/>
<line x1="3" y1="14" x2="3" y2="15"/>
<line x1="21" y1="14" x2="21" y2="15"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/square-dashed.svg"
width="24" height="24" alt="square dashed icon">
<!-- …or paste the raw SVG from the SVG tab -->import { SquareDashedIcon } from "@softicons/react";
export default function Example() {
return <SquareDashedIcon size={24} strokeWidth={2} />;
}<script setup>
import { SquareDashedIcon } from "@softicons/vue";
</script>
<template>
<SquareDashedIcon :size="24" :stroke-width="2" />
</template>import { SquareDashedIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [SquareDashedIconComponent],
template: `<square-dashed-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}