wheel icon
wheel from Reicon by REICON · Outline · Parts · MIT Free for personal and commercial use.
- Name
- wheel
- Set
- Reicon
- Style
- Outline
- Category
- Parts
- Viewbox
- 24×24
- License
- MIT
2 other variants in Reicon
The same icon in other sets
All wheel icons →More parts icons from Reicon
Use the wheel icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 2.75a9.25 9.25 0 1 0 0 18.5a9.25 9.25 0 0 0 0-18.5M1.25 12C1.25 6.063 6.063 1.25 12 1.25S22.75 6.063 22.75 12S17.937 22.75 12 22.75S1.25 17.937 1.25 12m5.553-.75h2.55a2.74 2.74 0 0 1 .675-1.166l-1.276-2.21a5.25 5.25 0 0 0-1.949 3.376m3.248-4.126l1.275 2.21a2.76 2.76 0 0 1 1.348 0l1.275-2.21A5.2 5.2 0 0 0 12 6.75c-.689 0-1.347.133-1.95.374m5.197.75l-1.276 2.21c.314.322.549.721.675 1.166h2.55a5.25 5.25 0 0 0-1.95-3.375m1.949 4.876h-2.55a2.74 2.74 0 0 1-.675 1.166l1.276 2.21a5.25 5.25 0 0 0 1.949-3.376m-3.248 4.126l-1.275-2.21a2.75 2.75 0 0 1-1.348 0l-1.275 2.21c.602.241 1.26.374 1.949.374s1.347-.133 1.95-.374m-5.197-.75l1.276-2.21a2.75 2.75 0 0 1-.674-1.166h-2.55a5.25 5.25 0 0 0 1.948 3.375m2.634-3.037l-.011-.006l-.01-.006a1.25 1.25 0 0 1-.005-2.151l.015-.008l.015-.01a1.24 1.24 0 0 1 1.217 0l.018.01l.017.01a1.25 1.25 0 0 1-.01 2.15l-.007.005l-.008.005a1.24 1.24 0 0 1-1.231.001M5.25 12a6.75 6.75 0 1 1 13.5 0a6.75 6.75 0 0 1-13.5 0" clip-rule="evenodd"/></svg>
React
import type { SVGProps } from "react";
export function ReiconWheel(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fillRule="evenodd" d="M12 2.75a9.25 9.25 0 1 0 0 18.5a9.25 9.25 0 0 0 0-18.5M1.25 12C1.25 6.063 6.063 1.25 12 1.25S22.75 6.063 22.75 12S17.937 22.75 12 22.75S1.25 17.937 1.25 12m5.553-.75h2.55a2.74 2.74 0 0 1 .675-1.166l-1.276-2.21a5.25 5.25 0 0 0-1.949 3.376m3.248-4.126l1.275 2.21a2.76 2.76 0 0 1 1.348 0l1.275-2.21A5.2 5.2 0 0 0 12 6.75c-.689 0-1.347.133-1.95.374m5.197.75l-1.276 2.21c.314.322.549.721.675 1.166h2.55a5.25 5.25 0 0 0-1.95-3.375m1.949 4.876h-2.55a2.74 2.74 0 0 1-.675 1.166l1.276 2.21a5.25 5.25 0 0 0 1.949-3.376m-3.248 4.126l-1.275-2.21a2.75 2.75 0 0 1-1.348 0l-1.275 2.21c.602.241 1.26.374 1.949.374s1.347-.133 1.95-.374m-5.197-.75l1.276-2.21a2.75 2.75 0 0 1-.674-1.166h-2.55a5.25 5.25 0 0 0 1.948 3.375m2.634-3.037l-.011-.006l-.01-.006a1.25 1.25 0 0 1-.005-2.151l.015-.008l.015-.01a1.24 1.24 0 0 1 1.217 0l.018.01l.017.01a1.25 1.25 0 0 1-.01 2.15l-.007.005l-.008.005a1.24 1.24 0 0 1-1.231.001M5.25 12a6.75 6.75 0 1 1 13.5 0a6.75 6.75 0 0 1-13.5 0" clipRule="evenodd"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 2.75a9.25 9.25 0 1 0 0 18.5a9.25 9.25 0 0 0 0-18.5M1.25 12C1.25 6.063 6.063 1.25 12 1.25S22.75 6.063 22.75 12S17.937 22.75 12 22.75S1.25 17.937 1.25 12m5.553-.75h2.55a2.74 2.74 0 0 1 .675-1.166l-1.276-2.21a5.25 5.25 0 0 0-1.949 3.376m3.248-4.126l1.275 2.21a2.76 2.76 0 0 1 1.348 0l1.275-2.21A5.2 5.2 0 0 0 12 6.75c-.689 0-1.347.133-1.95.374m5.197.75l-1.276 2.21c.314.322.549.721.675 1.166h2.55a5.25 5.25 0 0 0-1.95-3.375m1.949 4.876h-2.55a2.74 2.74 0 0 1-.675 1.166l1.276 2.21a5.25 5.25 0 0 0 1.949-3.376m-3.248 4.126l-1.275-2.21a2.75 2.75 0 0 1-1.348 0l-1.275 2.21c.602.241 1.26.374 1.949.374s1.347-.133 1.95-.374m-5.197-.75l1.276-2.21a2.75 2.75 0 0 1-.674-1.166h-2.55a5.25 5.25 0 0 0 1.948 3.375m2.634-3.037l-.011-.006l-.01-.006a1.25 1.25 0 0 1-.005-2.151l.015-.008l.015-.01a1.24 1.24 0 0 1 1.217 0l.018.01l.017.01a1.25 1.25 0 0 1-.01 2.15l-.007.005l-.008.005a1.24 1.24 0 0 1-1.231.001M5.25 12a6.75 6.75 0 1 1 13.5 0a6.75 6.75 0 0 1-13.5 0" clip-rule="evenodd"/></svg> </template>
CSS
.icon-wheel {
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%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M12%202.75a9.25%209.25%200%201%200%200%2018.5a9.25%209.25%200%200%200%200-18.5M1.25%2012C1.25%206.063%206.063%201.25%2012%201.25S22.75%206.063%2022.75%2012S17.937%2022.75%2012%2022.75S1.25%2017.937%201.25%2012m5.553-.75h2.55a2.74%202.74%200%200%201%20.675-1.166l-1.276-2.21a5.25%205.25%200%200%200-1.949%203.376m3.248-4.126l1.275%202.21a2.76%202.76%200%200%201%201.348%200l1.275-2.21A5.2%205.2%200%200%200%2012%206.75c-.689%200-1.347.133-1.95.374m5.197.75l-1.276%202.21c.314.322.549.721.675%201.166h2.55a5.25%205.25%200%200%200-1.95-3.375m1.949%204.876h-2.55a2.74%202.74%200%200%201-.675%201.166l1.276%202.21a5.25%205.25%200%200%200%201.949-3.376m-3.248%204.126l-1.275-2.21a2.75%202.75%200%200%201-1.348%200l-1.275%202.21c.602.241%201.26.374%201.949.374s1.347-.133%201.95-.374m-5.197-.75l1.276-2.21a2.75%202.75%200%200%201-.674-1.166h-2.55a5.25%205.25%200%200%200%201.948%203.375m2.634-3.037l-.011-.006l-.01-.006a1.25%201.25%200%200%201-.005-2.151l.015-.008l.015-.01a1.24%201.24%200%200%201%201.217%200l.018.01l.017.01a1.25%201.25%200%200%201-.01%202.15l-.007.005l-.008.005a1.24%201.24%200%200%201-1.231.001M5.25%2012a6.75%206.75%200%201%201%2013.5%200a6.75%206.75%200%200%201-13.5%200%22%20clip-rule%3D%22evenodd%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%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M12%202.75a9.25%209.25%200%201%200%200%2018.5a9.25%209.25%200%200%200%200-18.5M1.25%2012C1.25%206.063%206.063%201.25%2012%201.25S22.75%206.063%2022.75%2012S17.937%2022.75%2012%2022.75S1.25%2017.937%201.25%2012m5.553-.75h2.55a2.74%202.74%200%200%201%20.675-1.166l-1.276-2.21a5.25%205.25%200%200%200-1.949%203.376m3.248-4.126l1.275%202.21a2.76%202.76%200%200%201%201.348%200l1.275-2.21A5.2%205.2%200%200%200%2012%206.75c-.689%200-1.347.133-1.95.374m5.197.75l-1.276%202.21c.314.322.549.721.675%201.166h2.55a5.25%205.25%200%200%200-1.95-3.375m1.949%204.876h-2.55a2.74%202.74%200%200%201-.675%201.166l1.276%202.21a5.25%205.25%200%200%200%201.949-3.376m-3.248%204.126l-1.275-2.21a2.75%202.75%200%200%201-1.348%200l-1.275%202.21c.602.241%201.26.374%201.949.374s1.347-.133%201.95-.374m-5.197-.75l1.276-2.21a2.75%202.75%200%200%201-.674-1.166h-2.55a5.25%205.25%200%200%200%201.948%203.375m2.634-3.037l-.011-.006l-.01-.006a1.25%201.25%200%200%201-.005-2.151l.015-.008l.015-.01a1.24%201.24%200%200%201%201.217%200l.018.01l.017.01a1.25%201.25%200%200%201-.01%202.15l-.007.005l-.008.005a1.24%201.24%200%200%201-1.231.001M5.25%2012a6.75%206.75%200%201%201%2013.5%200a6.75%206.75%200%200%201-13.5%200%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/wheel.svg?color=%231a73e8&size=48