fidget spinner icon

fidget-spinner from Unicons by Iconscout · Line · User Interface · Apache-2.0 Free for personal and commercial use.

Name
fidget-spinner
Set
Unicons
Style
Line
Category
User Interface
Viewbox
24×24
License
Apache 2.0

The same icon in other sets

More user interface icons from Unicons

Use the fidget spinner icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 7a1 1 0 1 0 1 1a1 1 0 0 0-1-1m-5.696 9.134a1 1 0 1 0 1.366.366a1 1 0 0 0-1.366-.366m11.392 0a1 1 0 1 0 .366 1.366a1 1 0 0 0-.366-1.366m2.914-2.791a4.92 4.92 0 0 0-4.526-1.197l-.419-.763a4.99 4.99 0 0 0-2.503-8.251a5.04 5.04 0 0 0-4.279.958A4.98 4.98 0 0 0 7 8a4.93 4.93 0 0 0 1.352 3.392l-.419.75a4.99 4.99 0 0 0-5.926 6.286a5.03 5.03 0 0 0 2.97 3.226a4.97 4.97 0 0 0 6.588-3.19l.867.014a4.98 4.98 0 0 0 4.76 3.524a5.02 5.02 0 0 0 4.8-3.573a4.95 4.95 0 0 0-1.382-5.086m-.528 4.495a3.006 3.006 0 0 1-4.386 1.76a2.97 2.97 0 0 1-1.352-1.705a1.99 1.99 0 0 0-1.91-1.43h-.869a1.995 1.995 0 0 0-1.91 1.43a2.98 2.98 0 0 1-3.948 1.899a2.993 2.993 0 0 1 1.767-5.704a1.97 1.97 0 0 0 2.173-.942l.436-.754a1.995 1.995 0 0 0-.281-2.369a2.98 2.98 0 0 1 .329-4.37a2.993 2.993 0 0 1 4.069 4.369a2 2 0 0 0-.283 2.37l.435.753a1.974 1.974 0 0 0 2.174.943a2.988 2.988 0 0 1 3.556 3.75"/></svg>

React

import type { SVGProps } from "react";

export function UilFidgetSpinner(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" d="M12 7a1 1 0 1 0 1 1a1 1 0 0 0-1-1m-5.696 9.134a1 1 0 1 0 1.366.366a1 1 0 0 0-1.366-.366m11.392 0a1 1 0 1 0 .366 1.366a1 1 0 0 0-.366-1.366m2.914-2.791a4.92 4.92 0 0 0-4.526-1.197l-.419-.763a4.99 4.99 0 0 0-2.503-8.251a5.04 5.04 0 0 0-4.279.958A4.98 4.98 0 0 0 7 8a4.93 4.93 0 0 0 1.352 3.392l-.419.75a4.99 4.99 0 0 0-5.926 6.286a5.03 5.03 0 0 0 2.97 3.226a4.97 4.97 0 0 0 6.588-3.19l.867.014a4.98 4.98 0 0 0 4.76 3.524a5.02 5.02 0 0 0 4.8-3.573a4.95 4.95 0 0 0-1.382-5.086m-.528 4.495a3.006 3.006 0 0 1-4.386 1.76a2.97 2.97 0 0 1-1.352-1.705a1.99 1.99 0 0 0-1.91-1.43h-.869a1.995 1.995 0 0 0-1.91 1.43a2.98 2.98 0 0 1-3.948 1.899a2.993 2.993 0 0 1 1.767-5.704a1.97 1.97 0 0 0 2.173-.942l.436-.754a1.995 1.995 0 0 0-.281-2.369a2.98 2.98 0 0 1 .329-4.37a2.993 2.993 0 0 1 4.069 4.369a2 2 0 0 0-.283 2.37l.435.753a1.974 1.974 0 0 0 2.174.943a2.988 2.988 0 0 1 3.556 3.75"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 7a1 1 0 1 0 1 1a1 1 0 0 0-1-1m-5.696 9.134a1 1 0 1 0 1.366.366a1 1 0 0 0-1.366-.366m11.392 0a1 1 0 1 0 .366 1.366a1 1 0 0 0-.366-1.366m2.914-2.791a4.92 4.92 0 0 0-4.526-1.197l-.419-.763a4.99 4.99 0 0 0-2.503-8.251a5.04 5.04 0 0 0-4.279.958A4.98 4.98 0 0 0 7 8a4.93 4.93 0 0 0 1.352 3.392l-.419.75a4.99 4.99 0 0 0-5.926 6.286a5.03 5.03 0 0 0 2.97 3.226a4.97 4.97 0 0 0 6.588-3.19l.867.014a4.98 4.98 0 0 0 4.76 3.524a5.02 5.02 0 0 0 4.8-3.573a4.95 4.95 0 0 0-1.382-5.086m-.528 4.495a3.006 3.006 0 0 1-4.386 1.76a2.97 2.97 0 0 1-1.352-1.705a1.99 1.99 0 0 0-1.91-1.43h-.869a1.995 1.995 0 0 0-1.91 1.43a2.98 2.98 0 0 1-3.948 1.899a2.993 2.993 0 0 1 1.767-5.704a1.97 1.97 0 0 0 2.173-.942l.436-.754a1.995 1.995 0 0 0-.281-2.369a2.98 2.98 0 0 1 .329-4.37a2.993 2.993 0 0 1 4.069 4.369a2 2 0 0 0-.283 2.37l.435.753a1.974 1.974 0 0 0 2.174.943a2.988 2.988 0 0 1 3.556 3.75"/></svg>
</template>

CSS

.icon-fidget-spinner {
  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%20d%3D%22M12%207a1%201%200%201%200%201%201a1%201%200%200%200-1-1m-5.696%209.134a1%201%200%201%200%201.366.366a1%201%200%200%200-1.366-.366m11.392%200a1%201%200%201%200%20.366%201.366a1%201%200%200%200-.366-1.366m2.914-2.791a4.92%204.92%200%200%200-4.526-1.197l-.419-.763a4.99%204.99%200%200%200-2.503-8.251a5.04%205.04%200%200%200-4.279.958A4.98%204.98%200%200%200%207%208a4.93%204.93%200%200%200%201.352%203.392l-.419.75a4.99%204.99%200%200%200-5.926%206.286a5.03%205.03%200%200%200%202.97%203.226a4.97%204.97%200%200%200%206.588-3.19l.867.014a4.98%204.98%200%200%200%204.76%203.524a5.02%205.02%200%200%200%204.8-3.573a4.95%204.95%200%200%200-1.382-5.086m-.528%204.495a3.006%203.006%200%200%201-4.386%201.76a2.97%202.97%200%200%201-1.352-1.705a1.99%201.99%200%200%200-1.91-1.43h-.869a1.995%201.995%200%200%200-1.91%201.43a2.98%202.98%200%200%201-3.948%201.899a2.993%202.993%200%200%201%201.767-5.704a1.97%201.97%200%200%200%202.173-.942l.436-.754a1.995%201.995%200%200%200-.281-2.369a2.98%202.98%200%200%201%20.329-4.37a2.993%202.993%200%200%201%204.069%204.369a2%202%200%200%200-.283%202.37l.435.753a1.974%201.974%200%200%200%202.174.943a2.988%202.988%200%200%201%203.556%203.75%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%20d%3D%22M12%207a1%201%200%201%200%201%201a1%201%200%200%200-1-1m-5.696%209.134a1%201%200%201%200%201.366.366a1%201%200%200%200-1.366-.366m11.392%200a1%201%200%201%200%20.366%201.366a1%201%200%200%200-.366-1.366m2.914-2.791a4.92%204.92%200%200%200-4.526-1.197l-.419-.763a4.99%204.99%200%200%200-2.503-8.251a5.04%205.04%200%200%200-4.279.958A4.98%204.98%200%200%200%207%208a4.93%204.93%200%200%200%201.352%203.392l-.419.75a4.99%204.99%200%200%200-5.926%206.286a5.03%205.03%200%200%200%202.97%203.226a4.97%204.97%200%200%200%206.588-3.19l.867.014a4.98%204.98%200%200%200%204.76%203.524a5.02%205.02%200%200%200%204.8-3.573a4.95%204.95%200%200%200-1.382-5.086m-.528%204.495a3.006%203.006%200%200%201-4.386%201.76a2.97%202.97%200%200%201-1.352-1.705a1.99%201.99%200%200%200-1.91-1.43h-.869a1.995%201.995%200%200%200-1.91%201.43a2.98%202.98%200%200%201-3.948%201.899a2.993%202.993%200%200%201%201.767-5.704a1.97%201.97%200%200%200%202.173-.942l.436-.754a1.995%201.995%200%200%200-.281-2.369a2.98%202.98%200%200%201%20.329-4.37a2.993%202.993%200%200%201%204.069%204.369a2%202%200%200%200-.283%202.37l.435.753a1.974%201.974%200%200%200%202.174.943a2.988%202.988%200%200%201%203.556%203.75%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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