paint roller icon

paint-roller from Huge Icons by Hugeicons · Stroke · MIT Free for personal and commercial use.

Name
paint-roller
Set
Huge Icons
Style
Stroke
Viewbox
24×24
License
MIT

The same icon in other sets

Related icons in Huge Icons

Use the paint roller icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="1.5"><path stroke-linejoin="round" d="M14.992 2h-9c-.932 0-1.398 0-1.765.152a2 2 0 0 0-1.083 1.083c-.152.367-.152.833-.152 1.765s0 1.398.152 1.765a2 2 0 0 0 1.083 1.083C4.594 8 5.06 8 5.992 8h9c.932 0 1.398 0 1.766-.152a2 2 0 0 0 1.082-1.083c.152-.367.152-.833.152-1.765s0-1.398-.152-1.765a2 2 0 0 0-1.082-1.083C16.39 2 15.924 2 14.992 2"/><path d="M11.992 20.5v-3c0-.466 0-.699-.076-.883a1 1 0 0 0-.541-.54C11.19 16 10.958 16 10.492 16s-.699 0-.883.076a1 1 0 0 0-.54.541c-.077.184-.077.417-.077.883v3c0 .466 0 .699.076.883a1 1 0 0 0 .542.54c.183.077.416.077.882.077s.7 0 .883-.076a1 1 0 0 0 .541-.541c.076-.184.076-.417.076-.883Z"/><path stroke-linejoin="round" d="M18.142 5c.791 0 1.187 0 1.505.11a2 2 0 0 1 1.235 1.235c.11.318.11.714.11 1.505c0 .612 0 .918-.075 1.184a2 2 0 0 1-.874 1.16c-.236.144-.53.228-1.118.396l-6.257 1.788c-1.047.3-1.57.45-1.873.85c-.303.401-.303.946-.303 2.035V16"/></g></svg>

React

import type { SVGProps } from "react";

export function HugeiconsPaintRoller(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" strokeLinecap="round" strokeWidth="1.5"><path strokeLinejoin="round" d="M14.992 2h-9c-.932 0-1.398 0-1.765.152a2 2 0 0 0-1.083 1.083c-.152.367-.152.833-.152 1.765s0 1.398.152 1.765a2 2 0 0 0 1.083 1.083C4.594 8 5.06 8 5.992 8h9c.932 0 1.398 0 1.766-.152a2 2 0 0 0 1.082-1.083c.152-.367.152-.833.152-1.765s0-1.398-.152-1.765a2 2 0 0 0-1.082-1.083C16.39 2 15.924 2 14.992 2"/><path d="M11.992 20.5v-3c0-.466 0-.699-.076-.883a1 1 0 0 0-.541-.54C11.19 16 10.958 16 10.492 16s-.699 0-.883.076a1 1 0 0 0-.54.541c-.077.184-.077.417-.077.883v3c0 .466 0 .699.076.883a1 1 0 0 0 .542.54c.183.077.416.077.882.077s.7 0 .883-.076a1 1 0 0 0 .541-.541c.076-.184.076-.417.076-.883Z"/><path strokeLinejoin="round" d="M18.142 5c.791 0 1.187 0 1.505.11a2 2 0 0 1 1.235 1.235c.11.318.11.714.11 1.505c0 .612 0 .918-.075 1.184a2 2 0 0 1-.874 1.16c-.236.144-.53.228-1.118.396l-6.257 1.788c-1.047.3-1.57.45-1.873.85c-.303.401-.303.946-.303 2.035V16"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="1.5"><path stroke-linejoin="round" d="M14.992 2h-9c-.932 0-1.398 0-1.765.152a2 2 0 0 0-1.083 1.083c-.152.367-.152.833-.152 1.765s0 1.398.152 1.765a2 2 0 0 0 1.083 1.083C4.594 8 5.06 8 5.992 8h9c.932 0 1.398 0 1.766-.152a2 2 0 0 0 1.082-1.083c.152-.367.152-.833.152-1.765s0-1.398-.152-1.765a2 2 0 0 0-1.082-1.083C16.39 2 15.924 2 14.992 2"/><path d="M11.992 20.5v-3c0-.466 0-.699-.076-.883a1 1 0 0 0-.541-.54C11.19 16 10.958 16 10.492 16s-.699 0-.883.076a1 1 0 0 0-.54.541c-.077.184-.077.417-.077.883v3c0 .466 0 .699.076.883a1 1 0 0 0 .542.54c.183.077.416.077.882.077s.7 0 .883-.076a1 1 0 0 0 .541-.541c.076-.184.076-.417.076-.883Z"/><path stroke-linejoin="round" d="M18.142 5c.791 0 1.187 0 1.505.11a2 2 0 0 1 1.235 1.235c.11.318.11.714.11 1.505c0 .612 0 .918-.075 1.184a2 2 0 0 1-.874 1.16c-.236.144-.53.228-1.118.396l-6.257 1.788c-1.047.3-1.57.45-1.873.85c-.303.401-.303.946-.303 2.035V16"/></g></svg>
</template>

CSS

.icon-paint-roller {
  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%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20stroke-linejoin%3D%22round%22%20d%3D%22M14.992%202h-9c-.932%200-1.398%200-1.765.152a2%202%200%200%200-1.083%201.083c-.152.367-.152.833-.152%201.765s0%201.398.152%201.765a2%202%200%200%200%201.083%201.083C4.594%208%205.06%208%205.992%208h9c.932%200%201.398%200%201.766-.152a2%202%200%200%200%201.082-1.083c.152-.367.152-.833.152-1.765s0-1.398-.152-1.765a2%202%200%200%200-1.082-1.083C16.39%202%2015.924%202%2014.992%202%22%2F%3E%3Cpath%20d%3D%22M11.992%2020.5v-3c0-.466%200-.699-.076-.883a1%201%200%200%200-.541-.54C11.19%2016%2010.958%2016%2010.492%2016s-.699%200-.883.076a1%201%200%200%200-.54.541c-.077.184-.077.417-.077.883v3c0%20.466%200%20.699.076.883a1%201%200%200%200%20.542.54c.183.077.416.077.882.077s.7%200%20.883-.076a1%201%200%200%200%20.541-.541c.076-.184.076-.417.076-.883Z%22%2F%3E%3Cpath%20stroke-linejoin%3D%22round%22%20d%3D%22M18.142%205c.791%200%201.187%200%201.505.11a2%202%200%200%201%201.235%201.235c.11.318.11.714.11%201.505c0%20.612%200%20.918-.075%201.184a2%202%200%200%201-.874%201.16c-.236.144-.53.228-1.118.396l-6.257%201.788c-1.047.3-1.57.45-1.873.85c-.303.401-.303.946-.303%202.035V16%22%2F%3E%3C%2Fg%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%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20stroke-linejoin%3D%22round%22%20d%3D%22M14.992%202h-9c-.932%200-1.398%200-1.765.152a2%202%200%200%200-1.083%201.083c-.152.367-.152.833-.152%201.765s0%201.398.152%201.765a2%202%200%200%200%201.083%201.083C4.594%208%205.06%208%205.992%208h9c.932%200%201.398%200%201.766-.152a2%202%200%200%200%201.082-1.083c.152-.367.152-.833.152-1.765s0-1.398-.152-1.765a2%202%200%200%200-1.082-1.083C16.39%202%2015.924%202%2014.992%202%22%2F%3E%3Cpath%20d%3D%22M11.992%2020.5v-3c0-.466%200-.699-.076-.883a1%201%200%200%200-.541-.54C11.19%2016%2010.958%2016%2010.492%2016s-.699%200-.883.076a1%201%200%200%200-.54.541c-.077.184-.077.417-.077.883v3c0%20.466%200%20.699.076.883a1%201%200%200%200%20.542.54c.183.077.416.077.882.077s.7%200%20.883-.076a1%201%200%200%200%20.541-.541c.076-.184.076-.417.076-.883Z%22%2F%3E%3Cpath%20stroke-linejoin%3D%22round%22%20d%3D%22M18.142%205c.791%200%201.187%200%201.505.11a2%202%200%200%201%201.235%201.235c.11.318.11.714.11%201.505c0%20.612%200%20.918-.075%201.184a2%202%200%200%201-.874%201.16c-.236.144-.53.228-1.118.396l-6.257%201.788c-1.047.3-1.57.45-1.873.85c-.303.401-.303.946-.303%202.035V16%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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