list checks icon
Free list checks 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="m3 6 1.5 1.5L7 4.5"/>
<path d="m3 14 1.5 1.5L7 12.5"/>
<line x1="11" y1="6" x2="21" y2="6"/>
<line x1="11" y1="14" x2="21" y2="14"/>
<line x1="11" y1="20" x2="21" y2="20"/>
<line x1="4" y1="20" x2="4.01" y2="20"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/list-checks.svg"
width="24" height="24" alt="list checks icon">
<!-- …or paste the raw SVG from the SVG tab -->import { ListChecksIcon } from "@softicons/react";
export default function Example() {
return <ListChecksIcon size={24} strokeWidth={2} />;
}<script setup>
import { ListChecksIcon } from "@softicons/vue";
</script>
<template>
<ListChecksIcon :size="24" :stroke-width="2" />
</template>import { ListChecksIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [ListChecksIconComponent],
template: `<list-checks-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}