database settings icon

database-settings-24-regular from Fluent UI System Icons by Microsoft Corporation · 24 Regular · MIT Free for personal and commercial use.

Name
database-settings-24-regular
Set
Fluent UI System Icons
Style
24 Regular
Viewbox
24×24
License
MIT

5 other variants in Fluent UI System Icons

The same icon in other sets

Related icons in Fluent UI System Icons

Use the database settings icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M16.06 12.901a2 2 0 0 0 2.9.001l.493-.518a5.3 5.3 0 0 1 1.485.922l-.187.63a2 2 0 0 0 1.45 2.511l.54.13a5.7 5.7 0 0 1 .005 1.807l-.584.144a2 2 0 0 0-1.44 2.496l.197.687a5.3 5.3 0 0 1-1.483.912l-.498-.524a2 2 0 0 0-2.899 0l-.493.518a5.3 5.3 0 0 1-1.484-.922l.186-.63a2 2 0 0 0-1.45-2.511l-.54-.13a5.7 5.7 0 0 1-.006-1.808l.584-.144a2 2 0 0 0 1.441-2.496l-.198-.686c.44-.382.94-.693 1.483-.913zM12 2c2.083 0 4.005.377 5.434 1.018c.713.32 1.336.72 1.792 1.203C19.684 4.707 20 5.31 20 6v5.498a6.5 6.5 0 0 0-1.5-.422V8.393c-.32.22-.68.416-1.066.59C16.004 9.622 14.083 10 12 10s-4.005-.377-5.434-1.018a7 7 0 0 1-1.066-.59V18c0 .207.09.459.365.75c.279.295.717.595 1.316.863c1.139.51 2.74.853 4.55.884a6.5 6.5 0 0 0 1.062 1.483Q12.401 22 12 22c-2.083 0-4.005-.377-5.434-1.018c-.713-.32-1.336-.72-1.792-1.203C4.316 19.293 4 18.691 4 18V6c0-.69.316-1.293.774-1.78c.456-.482 1.079-.883 1.792-1.202C7.996 2.377 9.917 2 12 2m5.499 14c-.8 0-1.449.672-1.45 1.5S16.7 19 17.5 19s1.45-.672 1.45-1.5S18.3 16 17.5 16M12 3.5c-1.921 0-3.624.351-4.82.887c-.598.268-1.036.568-1.315.863c-.274.291-.365.543-.365.75s.09.459.365.75c.279.295.717.595 1.316.863C8.376 8.15 10.079 8.5 12 8.5s3.624-.351 4.82-.887c.598-.268 1.036-.568 1.315-.863c.274-.291.365-.543.365-.75s-.09-.459-.365-.75c-.279-.295-.717-.595-1.316-.863C15.624 3.85 13.921 3.5 12 3.5"/></svg>

React

import type { SVGProps } from "react";

export function FluentDatabaseSettings24Regular(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="M16.06 12.901a2 2 0 0 0 2.9.001l.493-.518a5.3 5.3 0 0 1 1.485.922l-.187.63a2 2 0 0 0 1.45 2.511l.54.13a5.7 5.7 0 0 1 .005 1.807l-.584.144a2 2 0 0 0-1.44 2.496l.197.687a5.3 5.3 0 0 1-1.483.912l-.498-.524a2 2 0 0 0-2.899 0l-.493.518a5.3 5.3 0 0 1-1.484-.922l.186-.63a2 2 0 0 0-1.45-2.511l-.54-.13a5.7 5.7 0 0 1-.006-1.808l.584-.144a2 2 0 0 0 1.441-2.496l-.198-.686c.44-.382.94-.693 1.483-.913zM12 2c2.083 0 4.005.377 5.434 1.018c.713.32 1.336.72 1.792 1.203C19.684 4.707 20 5.31 20 6v5.498a6.5 6.5 0 0 0-1.5-.422V8.393c-.32.22-.68.416-1.066.59C16.004 9.622 14.083 10 12 10s-4.005-.377-5.434-1.018a7 7 0 0 1-1.066-.59V18c0 .207.09.459.365.75c.279.295.717.595 1.316.863c1.139.51 2.74.853 4.55.884a6.5 6.5 0 0 0 1.062 1.483Q12.401 22 12 22c-2.083 0-4.005-.377-5.434-1.018c-.713-.32-1.336-.72-1.792-1.203C4.316 19.293 4 18.691 4 18V6c0-.69.316-1.293.774-1.78c.456-.482 1.079-.883 1.792-1.202C7.996 2.377 9.917 2 12 2m5.499 14c-.8 0-1.449.672-1.45 1.5S16.7 19 17.5 19s1.45-.672 1.45-1.5S18.3 16 17.5 16M12 3.5c-1.921 0-3.624.351-4.82.887c-.598.268-1.036.568-1.315.863c-.274.291-.365.543-.365.75s.09.459.365.75c.279.295.717.595 1.316.863C8.376 8.15 10.079 8.5 12 8.5s3.624-.351 4.82-.887c.598-.268 1.036-.568 1.315-.863c.274-.291.365-.543.365-.75s-.09-.459-.365-.75c-.279-.295-.717-.595-1.316-.863C15.624 3.85 13.921 3.5 12 3.5"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M16.06 12.901a2 2 0 0 0 2.9.001l.493-.518a5.3 5.3 0 0 1 1.485.922l-.187.63a2 2 0 0 0 1.45 2.511l.54.13a5.7 5.7 0 0 1 .005 1.807l-.584.144a2 2 0 0 0-1.44 2.496l.197.687a5.3 5.3 0 0 1-1.483.912l-.498-.524a2 2 0 0 0-2.899 0l-.493.518a5.3 5.3 0 0 1-1.484-.922l.186-.63a2 2 0 0 0-1.45-2.511l-.54-.13a5.7 5.7 0 0 1-.006-1.808l.584-.144a2 2 0 0 0 1.441-2.496l-.198-.686c.44-.382.94-.693 1.483-.913zM12 2c2.083 0 4.005.377 5.434 1.018c.713.32 1.336.72 1.792 1.203C19.684 4.707 20 5.31 20 6v5.498a6.5 6.5 0 0 0-1.5-.422V8.393c-.32.22-.68.416-1.066.59C16.004 9.622 14.083 10 12 10s-4.005-.377-5.434-1.018a7 7 0 0 1-1.066-.59V18c0 .207.09.459.365.75c.279.295.717.595 1.316.863c1.139.51 2.74.853 4.55.884a6.5 6.5 0 0 0 1.062 1.483Q12.401 22 12 22c-2.083 0-4.005-.377-5.434-1.018c-.713-.32-1.336-.72-1.792-1.203C4.316 19.293 4 18.691 4 18V6c0-.69.316-1.293.774-1.78c.456-.482 1.079-.883 1.792-1.202C7.996 2.377 9.917 2 12 2m5.499 14c-.8 0-1.449.672-1.45 1.5S16.7 19 17.5 19s1.45-.672 1.45-1.5S18.3 16 17.5 16M12 3.5c-1.921 0-3.624.351-4.82.887c-.598.268-1.036.568-1.315.863c-.274.291-.365.543-.365.75s.09.459.365.75c.279.295.717.595 1.316.863C8.376 8.15 10.079 8.5 12 8.5s3.624-.351 4.82-.887c.598-.268 1.036-.568 1.315-.863c.274-.291.365-.543.365-.75s-.09-.459-.365-.75c-.279-.295-.717-.595-1.316-.863C15.624 3.85 13.921 3.5 12 3.5"/></svg>
</template>

CSS

.icon-database-settings-24-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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16.06%2012.901a2%202%200%200%200%202.9.001l.493-.518a5.3%205.3%200%200%201%201.485.922l-.187.63a2%202%200%200%200%201.45%202.511l.54.13a5.7%205.7%200%200%201%20.005%201.807l-.584.144a2%202%200%200%200-1.44%202.496l.197.687a5.3%205.3%200%200%201-1.483.912l-.498-.524a2%202%200%200%200-2.899%200l-.493.518a5.3%205.3%200%200%201-1.484-.922l.186-.63a2%202%200%200%200-1.45-2.511l-.54-.13a5.7%205.7%200%200%201-.006-1.808l.584-.144a2%202%200%200%200%201.441-2.496l-.198-.686c.44-.382.94-.693%201.483-.913zM12%202c2.083%200%204.005.377%205.434%201.018c.713.32%201.336.72%201.792%201.203C19.684%204.707%2020%205.31%2020%206v5.498a6.5%206.5%200%200%200-1.5-.422V8.393c-.32.22-.68.416-1.066.59C16.004%209.622%2014.083%2010%2012%2010s-4.005-.377-5.434-1.018a7%207%200%200%201-1.066-.59V18c0%20.207.09.459.365.75c.279.295.717.595%201.316.863c1.139.51%202.74.853%204.55.884a6.5%206.5%200%200%200%201.062%201.483Q12.401%2022%2012%2022c-2.083%200-4.005-.377-5.434-1.018c-.713-.32-1.336-.72-1.792-1.203C4.316%2019.293%204%2018.691%204%2018V6c0-.69.316-1.293.774-1.78c.456-.482%201.079-.883%201.792-1.202C7.996%202.377%209.917%202%2012%202m5.499%2014c-.8%200-1.449.672-1.45%201.5S16.7%2019%2017.5%2019s1.45-.672%201.45-1.5S18.3%2016%2017.5%2016M12%203.5c-1.921%200-3.624.351-4.82.887c-.598.268-1.036.568-1.315.863c-.274.291-.365.543-.365.75s.09.459.365.75c.279.295.717.595%201.316.863C8.376%208.15%2010.079%208.5%2012%208.5s3.624-.351%204.82-.887c.598-.268%201.036-.568%201.315-.863c.274-.291.365-.543.365-.75s-.09-.459-.365-.75c-.279-.295-.717-.595-1.316-.863C15.624%203.85%2013.921%203.5%2012%203.5%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%22M16.06%2012.901a2%202%200%200%200%202.9.001l.493-.518a5.3%205.3%200%200%201%201.485.922l-.187.63a2%202%200%200%200%201.45%202.511l.54.13a5.7%205.7%200%200%201%20.005%201.807l-.584.144a2%202%200%200%200-1.44%202.496l.197.687a5.3%205.3%200%200%201-1.483.912l-.498-.524a2%202%200%200%200-2.899%200l-.493.518a5.3%205.3%200%200%201-1.484-.922l.186-.63a2%202%200%200%200-1.45-2.511l-.54-.13a5.7%205.7%200%200%201-.006-1.808l.584-.144a2%202%200%200%200%201.441-2.496l-.198-.686c.44-.382.94-.693%201.483-.913zM12%202c2.083%200%204.005.377%205.434%201.018c.713.32%201.336.72%201.792%201.203C19.684%204.707%2020%205.31%2020%206v5.498a6.5%206.5%200%200%200-1.5-.422V8.393c-.32.22-.68.416-1.066.59C16.004%209.622%2014.083%2010%2012%2010s-4.005-.377-5.434-1.018a7%207%200%200%201-1.066-.59V18c0%20.207.09.459.365.75c.279.295.717.595%201.316.863c1.139.51%202.74.853%204.55.884a6.5%206.5%200%200%200%201.062%201.483Q12.401%2022%2012%2022c-2.083%200-4.005-.377-5.434-1.018c-.713-.32-1.336-.72-1.792-1.203C4.316%2019.293%204%2018.691%204%2018V6c0-.69.316-1.293.774-1.78c.456-.482%201.079-.883%201.792-1.202C7.996%202.377%209.917%202%2012%202m5.499%2014c-.8%200-1.449.672-1.45%201.5S16.7%2019%2017.5%2019s1.45-.672%201.45-1.5S18.3%2016%2017.5%2016M12%203.5c-1.921%200-3.624.351-4.82.887c-.598.268-1.036.568-1.315.863c-.274.291-.365.543-.365.75s.09.459.365.75c.279.295.717.595%201.316.863C8.376%208.15%2010.079%208.5%2012%208.5s3.624-.351%204.82-.887c.598-.268%201.036-.568%201.315-.863c.274-.291.365-.543.365-.75s-.09-.459-.365-.75c-.279-.295-.717-.595-1.316-.863C15.624%203.85%2013.921%203.5%2012%203.5%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/database-settings-24-regular.svg?color=%231a73e8&size=48