plug disconnected icon
plug-disconnected-20-regular from Fluent UI System Icons by Microsoft Corporation · 20 Regular · MIT Free for personal and commercial use.
- Name
- plug-disconnected-20-regular
- Set
- Fluent UI System Icons
- Style
- 20 Regular
- Viewbox
- 20×20
- License
- MIT
9 other variants in Fluent UI System Icons
Related icons in Fluent UI System Icons
Use the plug disconnected icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M17.854 2.146a.5.5 0 0 1 0 .708l-1.668 1.668a4.04 4.04 0 0 1-.332 5.331l-.3.3l-.003.003l-.309.309a1.05 1.05 0 0 1-1.484 0L9.535 6.242a1.05 1.05 0 0 1 0-1.485l.611-.61a4.036 4.036 0 0 1 5.332-.332l1.668-1.669a.5.5 0 0 1 .708 0M15.14 4.847a3.037 3.037 0 0 0-4.286.006l-.3.3a.49.49 0 0 0 0 .693l3.6 3.6c.19.191.5.192.691.002l.002-.002l.3-.3a3.036 3.036 0 0 0 .006-4.286l-.007-.006zm-5.786 3.8a.5.5 0 0 1 0 .707L7.707 11L9 12.293l1.646-1.647a.5.5 0 0 1 .708.708L9.707 13l.447.447a1.49 1.49 0 0 1 0 2.107l-.3.3a4.036 4.036 0 0 1-5.332.332l-1.668 1.668a.5.5 0 0 1-.708-.708l1.669-1.668a4.036 4.036 0 0 1 .331-5.331l.3-.3a1.49 1.49 0 0 1 2.108 0l.446.446l1.646-1.647a.5.5 0 0 1 .708 0m-4.495 6.505a3.036 3.036 0 0 0 4.287-.005l.3-.3a.49.49 0 0 0 0-.693l-3.6-3.6a.49.49 0 0 0-.692 0l-.3.3a3.036 3.036 0 0 0 0 4.292z"/></svg>
React
import type { SVGProps } from "react";
export function FluentPlugDisconnected20Regular(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="M17.854 2.146a.5.5 0 0 1 0 .708l-1.668 1.668a4.04 4.04 0 0 1-.332 5.331l-.3.3l-.003.003l-.309.309a1.05 1.05 0 0 1-1.484 0L9.535 6.242a1.05 1.05 0 0 1 0-1.485l.611-.61a4.036 4.036 0 0 1 5.332-.332l1.668-1.669a.5.5 0 0 1 .708 0M15.14 4.847a3.037 3.037 0 0 0-4.286.006l-.3.3a.49.49 0 0 0 0 .693l3.6 3.6c.19.191.5.192.691.002l.002-.002l.3-.3a3.036 3.036 0 0 0 .006-4.286l-.007-.006zm-5.786 3.8a.5.5 0 0 1 0 .707L7.707 11L9 12.293l1.646-1.647a.5.5 0 0 1 .708.708L9.707 13l.447.447a1.49 1.49 0 0 1 0 2.107l-.3.3a4.036 4.036 0 0 1-5.332.332l-1.668 1.668a.5.5 0 0 1-.708-.708l1.669-1.668a4.036 4.036 0 0 1 .331-5.331l.3-.3a1.49 1.49 0 0 1 2.108 0l.446.446l1.646-1.647a.5.5 0 0 1 .708 0m-4.495 6.505a3.036 3.036 0 0 0 4.287-.005l.3-.3a.49.49 0 0 0 0-.693l-3.6-3.6a.49.49 0 0 0-.692 0l-.3.3a3.036 3.036 0 0 0 0 4.292z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M17.854 2.146a.5.5 0 0 1 0 .708l-1.668 1.668a4.04 4.04 0 0 1-.332 5.331l-.3.3l-.003.003l-.309.309a1.05 1.05 0 0 1-1.484 0L9.535 6.242a1.05 1.05 0 0 1 0-1.485l.611-.61a4.036 4.036 0 0 1 5.332-.332l1.668-1.669a.5.5 0 0 1 .708 0M15.14 4.847a3.037 3.037 0 0 0-4.286.006l-.3.3a.49.49 0 0 0 0 .693l3.6 3.6c.19.191.5.192.691.002l.002-.002l.3-.3a3.036 3.036 0 0 0 .006-4.286l-.007-.006zm-5.786 3.8a.5.5 0 0 1 0 .707L7.707 11L9 12.293l1.646-1.647a.5.5 0 0 1 .708.708L9.707 13l.447.447a1.49 1.49 0 0 1 0 2.107l-.3.3a4.036 4.036 0 0 1-5.332.332l-1.668 1.668a.5.5 0 0 1-.708-.708l1.669-1.668a4.036 4.036 0 0 1 .331-5.331l.3-.3a1.49 1.49 0 0 1 2.108 0l.446.446l1.646-1.647a.5.5 0 0 1 .708 0m-4.495 6.505a3.036 3.036 0 0 0 4.287-.005l.3-.3a.49.49 0 0 0 0-.693l-3.6-3.6a.49.49 0 0 0-.692 0l-.3.3a3.036 3.036 0 0 0 0 4.292z"/></svg> </template>
CSS
.icon-plug-disconnected-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%22M17.854%202.146a.5.5%200%200%201%200%20.708l-1.668%201.668a4.04%204.04%200%200%201-.332%205.331l-.3.3l-.003.003l-.309.309a1.05%201.05%200%200%201-1.484%200L9.535%206.242a1.05%201.05%200%200%201%200-1.485l.611-.61a4.036%204.036%200%200%201%205.332-.332l1.668-1.669a.5.5%200%200%201%20.708%200M15.14%204.847a3.037%203.037%200%200%200-4.286.006l-.3.3a.49.49%200%200%200%200%20.693l3.6%203.6c.19.191.5.192.691.002l.002-.002l.3-.3a3.036%203.036%200%200%200%20.006-4.286l-.007-.006zm-5.786%203.8a.5.5%200%200%201%200%20.707L7.707%2011L9%2012.293l1.646-1.647a.5.5%200%200%201%20.708.708L9.707%2013l.447.447a1.49%201.49%200%200%201%200%202.107l-.3.3a4.036%204.036%200%200%201-5.332.332l-1.668%201.668a.5.5%200%200%201-.708-.708l1.669-1.668a4.036%204.036%200%200%201%20.331-5.331l.3-.3a1.49%201.49%200%200%201%202.108%200l.446.446l1.646-1.647a.5.5%200%200%201%20.708%200m-4.495%206.505a3.036%203.036%200%200%200%204.287-.005l.3-.3a.49.49%200%200%200%200-.693l-3.6-3.6a.49.49%200%200%200-.692%200l-.3.3a3.036%203.036%200%200%200%200%204.292z%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%22M17.854%202.146a.5.5%200%200%201%200%20.708l-1.668%201.668a4.04%204.04%200%200%201-.332%205.331l-.3.3l-.003.003l-.309.309a1.05%201.05%200%200%201-1.484%200L9.535%206.242a1.05%201.05%200%200%201%200-1.485l.611-.61a4.036%204.036%200%200%201%205.332-.332l1.668-1.669a.5.5%200%200%201%20.708%200M15.14%204.847a3.037%203.037%200%200%200-4.286.006l-.3.3a.49.49%200%200%200%200%20.693l3.6%203.6c.19.191.5.192.691.002l.002-.002l.3-.3a3.036%203.036%200%200%200%20.006-4.286l-.007-.006zm-5.786%203.8a.5.5%200%200%201%200%20.707L7.707%2011L9%2012.293l1.646-1.647a.5.5%200%200%201%20.708.708L9.707%2013l.447.447a1.49%201.49%200%200%201%200%202.107l-.3.3a4.036%204.036%200%200%201-5.332.332l-1.668%201.668a.5.5%200%200%201-.708-.708l1.669-1.668a4.036%204.036%200%200%201%20.331-5.331l.3-.3a1.49%201.49%200%200%201%202.108%200l.446.446l1.646-1.647a.5.5%200%200%201%20.708%200m-4.495%206.505a3.036%203.036%200%200%200%204.287-.005l.3-.3a.49.49%200%200%200%200-.693l-3.6-3.6a.49.49%200%200%200-.692%200l-.3.3a3.036%203.036%200%200%200%200%204.292z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/plug-disconnected-20-regular.svg?color=%231a73e8&size=48