palette icon
Free palette 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="M12 2a10 10 0 0 0 0 20c1.1 0 2-.9 2-2 0-.5-.2-.9-.5-1.3-.3-.4-.5-.8-.5-1.2 0-1 .9-1.5 2-1.5h2.5A4.5 4.5 0 0 0 22 11.5 9.5 9.5 0 0 0 12 2Z"/>
<circle cx="7.5" cy="10.5" r="1"/>
<circle cx="12" cy="7.5" r="1"/>
<circle cx="16.5" cy="10.5" r="1"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/palette.svg"
width="24" height="24" alt="palette icon">
<!-- …or paste the raw SVG from the SVG tab -->import { PaletteIcon } from "@softicons/react";
export default function Example() {
return <PaletteIcon size={24} strokeWidth={2} />;
}<script setup>
import { PaletteIcon } from "@softicons/vue";
</script>
<template>
<PaletteIcon :size="24" :stroke-width="2" />
</template>import { PaletteIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [PaletteIconComponent],
template: `<palette-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}