settings icon
settings-20-regular from Fluent UI System Icons by Microsoft Corporation · 20 Regular · MIT Free for personal and commercial use.
- Name
- settings-20-regular
- Set
- Fluent UI System Icons
- Style
- 20 Regular
- Viewbox
- 20×20
- License
- MIT
12 other variants in Fluent UI System Icons
The same icon in other sets
settingsCarbonsettingsCodiconssettings-fillEva IconssettingsFeather Iconssettings-16Fluent UI System Color IconssettingsIconoirsettingsIonIconssettingsLucidesettingsMage IconssettingsMaterial Icon ThemesettingsMaterial SymbolssettingsMaterial Symbols LightsettingsOcticonssettings-fillRemix Iconsettings-boldSolarsettingsTabler Icons
Related icons in Fluent UI System Icons
Use the settings icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M1.911 7.383a8.5 8.5 0 0 1 1.78-3.08a.5.5 0 0 1 .54-.135l1.918.686a1 1 0 0 0 1.32-.762l.366-2.006a.5.5 0 0 1 .388-.4a8.5 8.5 0 0 1 3.554 0a.5.5 0 0 1 .388.4l.366 2.006a1 1 0 0 0 1.32.762l1.919-.686a.5.5 0 0 1 .54.136a8.5 8.5 0 0 1 1.78 3.079a.5.5 0 0 1-.153.535l-1.555 1.32a1 1 0 0 0 0 1.524l1.555 1.32a.5.5 0 0 1 .152.535a8.5 8.5 0 0 1-1.78 3.08a.5.5 0 0 1-.54.135l-1.918-.686a1 1 0 0 0-1.32.762l-.366 2.007a.5.5 0 0 1-.388.399a8.5 8.5 0 0 1-3.554 0a.5.5 0 0 1-.388-.4l-.366-2.006a1 1 0 0 0-1.32-.762l-1.918.686a.5.5 0 0 1-.54-.136a8.5 8.5 0 0 1-1.78-3.079a.5.5 0 0 1 .152-.535l1.555-1.32a1 1 0 0 0 0-1.524l-1.555-1.32a.5.5 0 0 1-.152-.535m1.06-.006l1.294 1.098a2 2 0 0 1 0 3.05l-1.293 1.098c.292.782.713 1.51 1.244 2.152l1.596-.57q.155-.055.315-.085a2 2 0 0 1 2.326 1.609l.304 1.669a7.6 7.6 0 0 0 2.486 0l.304-1.67a1.998 1.998 0 0 1 2.641-1.524l1.596.571a7.5 7.5 0 0 0 1.245-2.152l-1.294-1.098a1.998 1.998 0 0 1 0-3.05l1.294-1.098a7.5 7.5 0 0 0-1.245-2.152l-1.596.57a2 2 0 0 1-2.64-1.524l-.305-1.669a7.6 7.6 0 0 0-2.486 0l-.304 1.669a2 2 0 0 1-2.64 1.525l-1.597-.571a7.5 7.5 0 0 0-1.244 2.152M7.502 10a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m1 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 0 0-3 0"/></svg>
React
import type { SVGProps } from "react";
export function FluentSettings20Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M1.911 7.383a8.5 8.5 0 0 1 1.78-3.08a.5.5 0 0 1 .54-.135l1.918.686a1 1 0 0 0 1.32-.762l.366-2.006a.5.5 0 0 1 .388-.4a8.5 8.5 0 0 1 3.554 0a.5.5 0 0 1 .388.4l.366 2.006a1 1 0 0 0 1.32.762l1.919-.686a.5.5 0 0 1 .54.136a8.5 8.5 0 0 1 1.78 3.079a.5.5 0 0 1-.153.535l-1.555 1.32a1 1 0 0 0 0 1.524l1.555 1.32a.5.5 0 0 1 .152.535a8.5 8.5 0 0 1-1.78 3.08a.5.5 0 0 1-.54.135l-1.918-.686a1 1 0 0 0-1.32.762l-.366 2.007a.5.5 0 0 1-.388.399a8.5 8.5 0 0 1-3.554 0a.5.5 0 0 1-.388-.4l-.366-2.006a1 1 0 0 0-1.32-.762l-1.918.686a.5.5 0 0 1-.54-.136a8.5 8.5 0 0 1-1.78-3.079a.5.5 0 0 1 .152-.535l1.555-1.32a1 1 0 0 0 0-1.524l-1.555-1.32a.5.5 0 0 1-.152-.535m1.06-.006l1.294 1.098a2 2 0 0 1 0 3.05l-1.293 1.098c.292.782.713 1.51 1.244 2.152l1.596-.57q.155-.055.315-.085a2 2 0 0 1 2.326 1.609l.304 1.669a7.6 7.6 0 0 0 2.486 0l.304-1.67a1.998 1.998 0 0 1 2.641-1.524l1.596.571a7.5 7.5 0 0 0 1.245-2.152l-1.294-1.098a1.998 1.998 0 0 1 0-3.05l1.294-1.098a7.5 7.5 0 0 0-1.245-2.152l-1.596.57a2 2 0 0 1-2.64-1.524l-.305-1.669a7.6 7.6 0 0 0-2.486 0l-.304 1.669a2 2 0 0 1-2.64 1.525l-1.597-.571a7.5 7.5 0 0 0-1.244 2.152M7.502 10a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m1 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 0 0-3 0"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M1.911 7.383a8.5 8.5 0 0 1 1.78-3.08a.5.5 0 0 1 .54-.135l1.918.686a1 1 0 0 0 1.32-.762l.366-2.006a.5.5 0 0 1 .388-.4a8.5 8.5 0 0 1 3.554 0a.5.5 0 0 1 .388.4l.366 2.006a1 1 0 0 0 1.32.762l1.919-.686a.5.5 0 0 1 .54.136a8.5 8.5 0 0 1 1.78 3.079a.5.5 0 0 1-.153.535l-1.555 1.32a1 1 0 0 0 0 1.524l1.555 1.32a.5.5 0 0 1 .152.535a8.5 8.5 0 0 1-1.78 3.08a.5.5 0 0 1-.54.135l-1.918-.686a1 1 0 0 0-1.32.762l-.366 2.007a.5.5 0 0 1-.388.399a8.5 8.5 0 0 1-3.554 0a.5.5 0 0 1-.388-.4l-.366-2.006a1 1 0 0 0-1.32-.762l-1.918.686a.5.5 0 0 1-.54-.136a8.5 8.5 0 0 1-1.78-3.079a.5.5 0 0 1 .152-.535l1.555-1.32a1 1 0 0 0 0-1.524l-1.555-1.32a.5.5 0 0 1-.152-.535m1.06-.006l1.294 1.098a2 2 0 0 1 0 3.05l-1.293 1.098c.292.782.713 1.51 1.244 2.152l1.596-.57q.155-.055.315-.085a2 2 0 0 1 2.326 1.609l.304 1.669a7.6 7.6 0 0 0 2.486 0l.304-1.67a1.998 1.998 0 0 1 2.641-1.524l1.596.571a7.5 7.5 0 0 0 1.245-2.152l-1.294-1.098a1.998 1.998 0 0 1 0-3.05l1.294-1.098a7.5 7.5 0 0 0-1.245-2.152l-1.596.57a2 2 0 0 1-2.64-1.524l-.305-1.669a7.6 7.6 0 0 0-2.486 0l-.304 1.669a2 2 0 0 1-2.64 1.525l-1.597-.571a7.5 7.5 0 0 0-1.244 2.152M7.502 10a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m1 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 0 0-3 0"/></svg> </template>
CSS
.icon-settings-20-regular {
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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M1.911%207.383a8.5%208.5%200%200%201%201.78-3.08a.5.5%200%200%201%20.54-.135l1.918.686a1%201%200%200%200%201.32-.762l.366-2.006a.5.5%200%200%201%20.388-.4a8.5%208.5%200%200%201%203.554%200a.5.5%200%200%201%20.388.4l.366%202.006a1%201%200%200%200%201.32.762l1.919-.686a.5.5%200%200%201%20.54.136a8.5%208.5%200%200%201%201.78%203.079a.5.5%200%200%201-.153.535l-1.555%201.32a1%201%200%200%200%200%201.524l1.555%201.32a.5.5%200%200%201%20.152.535a8.5%208.5%200%200%201-1.78%203.08a.5.5%200%200%201-.54.135l-1.918-.686a1%201%200%200%200-1.32.762l-.366%202.007a.5.5%200%200%201-.388.399a8.5%208.5%200%200%201-3.554%200a.5.5%200%200%201-.388-.4l-.366-2.006a1%201%200%200%200-1.32-.762l-1.918.686a.5.5%200%200%201-.54-.136a8.5%208.5%200%200%201-1.78-3.079a.5.5%200%200%201%20.152-.535l1.555-1.32a1%201%200%200%200%200-1.524l-1.555-1.32a.5.5%200%200%201-.152-.535m1.06-.006l1.294%201.098a2%202%200%200%201%200%203.05l-1.293%201.098c.292.782.713%201.51%201.244%202.152l1.596-.57q.155-.055.315-.085a2%202%200%200%201%202.326%201.609l.304%201.669a7.6%207.6%200%200%200%202.486%200l.304-1.67a1.998%201.998%200%200%201%202.641-1.524l1.596.571a7.5%207.5%200%200%200%201.245-2.152l-1.294-1.098a1.998%201.998%200%200%201%200-3.05l1.294-1.098a7.5%207.5%200%200%200-1.245-2.152l-1.596.57a2%202%200%200%201-2.64-1.524l-.305-1.669a7.6%207.6%200%200%200-2.486%200l-.304%201.669a2%202%200%200%201-2.64%201.525l-1.597-.571a7.5%207.5%200%200%200-1.244%202.152M7.502%2010a2.5%202.5%200%201%201%205%200a2.5%202.5%200%200%201-5%200m1%200a1.5%201.5%200%201%200%203%200a1.5%201.5%200%200%200-3%200%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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M1.911%207.383a8.5%208.5%200%200%201%201.78-3.08a.5.5%200%200%201%20.54-.135l1.918.686a1%201%200%200%200%201.32-.762l.366-2.006a.5.5%200%200%201%20.388-.4a8.5%208.5%200%200%201%203.554%200a.5.5%200%200%201%20.388.4l.366%202.006a1%201%200%200%200%201.32.762l1.919-.686a.5.5%200%200%201%20.54.136a8.5%208.5%200%200%201%201.78%203.079a.5.5%200%200%201-.153.535l-1.555%201.32a1%201%200%200%200%200%201.524l1.555%201.32a.5.5%200%200%201%20.152.535a8.5%208.5%200%200%201-1.78%203.08a.5.5%200%200%201-.54.135l-1.918-.686a1%201%200%200%200-1.32.762l-.366%202.007a.5.5%200%200%201-.388.399a8.5%208.5%200%200%201-3.554%200a.5.5%200%200%201-.388-.4l-.366-2.006a1%201%200%200%200-1.32-.762l-1.918.686a.5.5%200%200%201-.54-.136a8.5%208.5%200%200%201-1.78-3.079a.5.5%200%200%201%20.152-.535l1.555-1.32a1%201%200%200%200%200-1.524l-1.555-1.32a.5.5%200%200%201-.152-.535m1.06-.006l1.294%201.098a2%202%200%200%201%200%203.05l-1.293%201.098c.292.782.713%201.51%201.244%202.152l1.596-.57q.155-.055.315-.085a2%202%200%200%201%202.326%201.609l.304%201.669a7.6%207.6%200%200%200%202.486%200l.304-1.67a1.998%201.998%200%200%201%202.641-1.524l1.596.571a7.5%207.5%200%200%200%201.245-2.152l-1.294-1.098a1.998%201.998%200%200%201%200-3.05l1.294-1.098a7.5%207.5%200%200%200-1.245-2.152l-1.596.57a2%202%200%200%201-2.64-1.524l-.305-1.669a7.6%207.6%200%200%200-2.486%200l-.304%201.669a2%202%200%200%201-2.64%201.525l-1.597-.571a7.5%207.5%200%200%200-1.244%202.152M7.502%2010a2.5%202.5%200%201%201%205%200a2.5%202.5%200%200%201-5%200m1%200a1.5%201.5%200%201%200%203%200a1.5%201.5%200%200%200-3%200%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/settings-20-regular.svg?color=%231a73e8&size=48