color picker icon

color-picker from Iconoir by Luca Burgio · Regular · Design Tools · MIT Free for personal and commercial use.

Name
color-picker
Set
Iconoir
Style
Regular
Category
Design Tools
Viewbox
24×24
License
MIT

The same icon in other sets

More design tools icons from Iconoir

Use the color picker icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m7 13.161l5.464-5.464a1 1 0 0 1 1.415 0l2.12 2.12a1 1 0 0 1 0 1.415l-1.928 1.929m-7.071 0l-2.172 2.172a1 1 0 0 0-.218.327l-1.028 2.496c-.508 1.233.725 2.466 1.958 1.959l2.497-1.028q.185-.077.326-.218l5.708-5.708m-7.071 0h7.071m-.193-9.707l2.121 2.121m4.243 4.243l-2.121-2.121m-2.122-2.122l1.414-1.414a1 1 0 0 1 1.415 0l.707.707a1 1 0 0 1 0 1.414L18.12 7.697m-2.122-2.122l2.122 2.122"/></svg>

React

import type { SVGProps } from "react";

export function IconoirColorPicker(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="m7 13.161l5.464-5.464a1 1 0 0 1 1.415 0l2.12 2.12a1 1 0 0 1 0 1.415l-1.928 1.929m-7.071 0l-2.172 2.172a1 1 0 0 0-.218.327l-1.028 2.496c-.508 1.233.725 2.466 1.958 1.959l2.497-1.028q.185-.077.326-.218l5.708-5.708m-7.071 0h7.071m-.193-9.707l2.121 2.121m4.243 4.243l-2.121-2.121m-2.122-2.122l1.414-1.414a1 1 0 0 1 1.415 0l.707.707a1 1 0 0 1 0 1.414L18.12 7.697m-2.122-2.122l2.122 2.122"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m7 13.161l5.464-5.464a1 1 0 0 1 1.415 0l2.12 2.12a1 1 0 0 1 0 1.415l-1.928 1.929m-7.071 0l-2.172 2.172a1 1 0 0 0-.218.327l-1.028 2.496c-.508 1.233.725 2.466 1.958 1.959l2.497-1.028q.185-.077.326-.218l5.708-5.708m-7.071 0h7.071m-.193-9.707l2.121 2.121m4.243 4.243l-2.121-2.121m-2.122-2.122l1.414-1.414a1 1 0 0 1 1.415 0l.707.707a1 1 0 0 1 0 1.414L18.12 7.697m-2.122-2.122l2.122 2.122"/></svg>
</template>

CSS

.icon-color-picker {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20d%3D%22m7%2013.161l5.464-5.464a1%201%200%200%201%201.415%200l2.12%202.12a1%201%200%200%201%200%201.415l-1.928%201.929m-7.071%200l-2.172%202.172a1%201%200%200%200-.218.327l-1.028%202.496c-.508%201.233.725%202.466%201.958%201.959l2.497-1.028q.185-.077.326-.218l5.708-5.708m-7.071%200h7.071m-.193-9.707l2.121%202.121m4.243%204.243l-2.121-2.121m-2.122-2.122l1.414-1.414a1%201%200%200%201%201.415%200l.707.707a1%201%200%200%201%200%201.414L18.12%207.697m-2.122-2.122l2.122%202.122%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20d%3D%22m7%2013.161l5.464-5.464a1%201%200%200%201%201.415%200l2.12%202.12a1%201%200%200%201%200%201.415l-1.928%201.929m-7.071%200l-2.172%202.172a1%201%200%200%200-.218.327l-1.028%202.496c-.508%201.233.725%202.466%201.958%201.959l2.497-1.028q.185-.077.326-.218l5.708-5.708m-7.071%200h7.071m-.193-9.707l2.121%202.121m4.243%204.243l-2.121-2.121m-2.122-2.122l1.414-1.414a1%201%200%200%201%201.415%200l.707.707a1%201%200%200%201%200%201.414L18.12%207.697m-2.122-2.122l2.122%202.122%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/iconoir/color-picker.svg?color=%231a73e8&size=48