key-change from Material Design Icons by Pictogrammers · Filled · Apache-2.0 Free for personal and commercial use.

Name
key-change
Set
Material Design Icons
Style
Filled
Viewbox
24×24
License
Apache 2.0

Related icons in Material Design Icons

Use the key change icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M7.5 2c2 0 3.6 1.2 4.2 3H21v3h-3v3h-3V8h-3.3c-.6 1.8-2.3 3-4.2 3C5 11 3 9 3 6.5S5 2 7.5 2m0 3C6.7 5 6 5.7 6 6.5S6.7 8 7.5 8S9 7.3 9 6.5S8.3 5 7.5 5m0 8c2 0 3.6 1.2 4.2 3H21v3h-1v3h-2v-3h-2v3h-3v-3h-1.3c-.6 1.8-2.3 3-4.2 3C5 22 3 20 3 17.5S5 13 7.5 13m0 3c-.8 0-1.5.7-1.5 1.5S6.7 19 7.5 19S9 18.3 9 17.5S8.3 16 7.5 16"/></svg>

React

import type { SVGProps } from "react";

export function MdiKeyChange(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="M7.5 2c2 0 3.6 1.2 4.2 3H21v3h-3v3h-3V8h-3.3c-.6 1.8-2.3 3-4.2 3C5 11 3 9 3 6.5S5 2 7.5 2m0 3C6.7 5 6 5.7 6 6.5S6.7 8 7.5 8S9 7.3 9 6.5S8.3 5 7.5 5m0 8c2 0 3.6 1.2 4.2 3H21v3h-1v3h-2v-3h-2v3h-3v-3h-1.3c-.6 1.8-2.3 3-4.2 3C5 22 3 20 3 17.5S5 13 7.5 13m0 3c-.8 0-1.5.7-1.5 1.5S6.7 19 7.5 19S9 18.3 9 17.5S8.3 16 7.5 16"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M7.5 2c2 0 3.6 1.2 4.2 3H21v3h-3v3h-3V8h-3.3c-.6 1.8-2.3 3-4.2 3C5 11 3 9 3 6.5S5 2 7.5 2m0 3C6.7 5 6 5.7 6 6.5S6.7 8 7.5 8S9 7.3 9 6.5S8.3 5 7.5 5m0 8c2 0 3.6 1.2 4.2 3H21v3h-1v3h-2v-3h-2v3h-3v-3h-1.3c-.6 1.8-2.3 3-4.2 3C5 22 3 20 3 17.5S5 13 7.5 13m0 3c-.8 0-1.5.7-1.5 1.5S6.7 19 7.5 19S9 18.3 9 17.5S8.3 16 7.5 16"/></svg>
</template>

CSS

.icon-key-change {
  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%22M7.5%202c2%200%203.6%201.2%204.2%203H21v3h-3v3h-3V8h-3.3c-.6%201.8-2.3%203-4.2%203C5%2011%203%209%203%206.5S5%202%207.5%202m0%203C6.7%205%206%205.7%206%206.5S6.7%208%207.5%208S9%207.3%209%206.5S8.3%205%207.5%205m0%208c2%200%203.6%201.2%204.2%203H21v3h-1v3h-2v-3h-2v3h-3v-3h-1.3c-.6%201.8-2.3%203-4.2%203C5%2022%203%2020%203%2017.5S5%2013%207.5%2013m0%203c-.8%200-1.5.7-1.5%201.5S6.7%2019%207.5%2019S9%2018.3%209%2017.5S8.3%2016%207.5%2016%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%22M7.5%202c2%200%203.6%201.2%204.2%203H21v3h-3v3h-3V8h-3.3c-.6%201.8-2.3%203-4.2%203C5%2011%203%209%203%206.5S5%202%207.5%202m0%203C6.7%205%206%205.7%206%206.5S6.7%208%207.5%208S9%207.3%209%206.5S8.3%205%207.5%205m0%208c2%200%203.6%201.2%204.2%203H21v3h-1v3h-2v-3h-2v3h-3v-3h-1.3c-.6%201.8-2.3%203-4.2%203C5%2022%203%2020%203%2017.5S5%2013%207.5%2013m0%203c-.8%200-1.5.7-1.5%201.5S6.7%2019%207.5%2019S9%2018.3%209%2017.5S8.3%2016%207.5%2016%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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