window fingerprint icon
window-fingerprint-24-filled from Fluent UI System Icons by Microsoft Corporation · 24 Filled · MIT Free for personal and commercial use.
- Name
- window-fingerprint-24-filled
- Set
- Fluent UI System Icons
- Style
- 24 Filled
- Viewbox
- 24×24
- License
- MIT
11 other variants in Fluent UI System Icons
window-fingerprint-16-filledwindow-fingerprint-16-regularwindow-fingerprint-20-filledwindow-fingerprint-20-regularwindow-fingerprint-24-regularwindow-fingerprint-28-filledwindow-fingerprint-28-regularwindow-fingerprint-32-filledwindow-fingerprint-32-regularwindow-fingerprint-48-filledwindow-fingerprint-48-regular
Related icons in Fluent UI System Icons
window-ad-20-filledwindow-ad-off-20-filledwindow-ad-person-20-filledwindow-apps-16-filledwindow-arrow-up-16-filledwindow-brush-20-filledwindow-bullet-list-20-filledwindow-bullet-list-add-20-filledwindow-column-one-fourth-left-20-filledwindow-column-one-fourth-left-focus-left-20-filledwindow-column-one-fourth-left-focus-top-20-filledwindow-console-20-filledwindow-database-20-filledwindow-dev-edit-16-filledwindow-dev-tools-16-filledwindow-edit-16-filledwindow-header-horizontal-20-filledwindow-header-horizontal-off-20-filledwindow-header-vertical-20-filledwindow-inprivate-20-filledwindow-inprivate-account-20-filledwindow-location-target-20-filledwindow-multiple-16-filledwindow-multiple-off-16-filled
Use the window fingerprint icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M3 6.25A3.25 3.25 0 0 1 6.25 3h11.5A3.25 3.25 0 0 1 21 6.25v6.704a6.8 6.8 0 0 0-1.5-1.122V8.5h-15v9.25c0 .966.784 1.75 1.75 1.75H9.5v.25c0 .49.201.932.525 1.25H6.25A3.25 3.25 0 0 1 3 17.75zm13.25 7.25c-.444 0-.87.068-1.271.193a.75.75 0 0 1-.449-1.431a5.75 5.75 0 0 1 6.697 2.608a.75.75 0 0 1-1.297.752a4.25 4.25 0 0 0-3.68-2.122m-3.553.653a.75.75 0 0 1 .15 1.05A4.23 4.23 0 0 0 12 17.75v2a.75.75 0 0 1-1.5 0v-2c0-1.292.427-2.486 1.147-3.446a.75.75 0 0 1 1.05-.15M21.25 17a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75m-6.715.4a1.75 1.75 0 0 1 3.465.35v4a.75.75 0 0 0 1.5 0v-4a3.25 3.25 0 0 0-6.435-.648a.75.75 0 1 0 1.47.298m-.035 2.35a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0zm2.5-2a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0z"/></svg>
React
import type { SVGProps } from "react";
export function FluentWindowFingerprint24Filled(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="M3 6.25A3.25 3.25 0 0 1 6.25 3h11.5A3.25 3.25 0 0 1 21 6.25v6.704a6.8 6.8 0 0 0-1.5-1.122V8.5h-15v9.25c0 .966.784 1.75 1.75 1.75H9.5v.25c0 .49.201.932.525 1.25H6.25A3.25 3.25 0 0 1 3 17.75zm13.25 7.25c-.444 0-.87.068-1.271.193a.75.75 0 0 1-.449-1.431a5.75 5.75 0 0 1 6.697 2.608a.75.75 0 0 1-1.297.752a4.25 4.25 0 0 0-3.68-2.122m-3.553.653a.75.75 0 0 1 .15 1.05A4.23 4.23 0 0 0 12 17.75v2a.75.75 0 0 1-1.5 0v-2c0-1.292.427-2.486 1.147-3.446a.75.75 0 0 1 1.05-.15M21.25 17a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75m-6.715.4a1.75 1.75 0 0 1 3.465.35v4a.75.75 0 0 0 1.5 0v-4a3.25 3.25 0 0 0-6.435-.648a.75.75 0 1 0 1.47.298m-.035 2.35a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0zm2.5-2a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M3 6.25A3.25 3.25 0 0 1 6.25 3h11.5A3.25 3.25 0 0 1 21 6.25v6.704a6.8 6.8 0 0 0-1.5-1.122V8.5h-15v9.25c0 .966.784 1.75 1.75 1.75H9.5v.25c0 .49.201.932.525 1.25H6.25A3.25 3.25 0 0 1 3 17.75zm13.25 7.25c-.444 0-.87.068-1.271.193a.75.75 0 0 1-.449-1.431a5.75 5.75 0 0 1 6.697 2.608a.75.75 0 0 1-1.297.752a4.25 4.25 0 0 0-3.68-2.122m-3.553.653a.75.75 0 0 1 .15 1.05A4.23 4.23 0 0 0 12 17.75v2a.75.75 0 0 1-1.5 0v-2c0-1.292.427-2.486 1.147-3.446a.75.75 0 0 1 1.05-.15M21.25 17a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75m-6.715.4a1.75 1.75 0 0 1 3.465.35v4a.75.75 0 0 0 1.5 0v-4a3.25 3.25 0 0 0-6.435-.648a.75.75 0 1 0 1.47.298m-.035 2.35a.75.75 0 0 0-1.5 0v2a.75.75 0 0 0 1.5 0zm2.5-2a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0z"/></svg> </template>
CSS
.icon-window-fingerprint-24-filled {
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%22M3%206.25A3.25%203.25%200%200%201%206.25%203h11.5A3.25%203.25%200%200%201%2021%206.25v6.704a6.8%206.8%200%200%200-1.5-1.122V8.5h-15v9.25c0%20.966.784%201.75%201.75%201.75H9.5v.25c0%20.49.201.932.525%201.25H6.25A3.25%203.25%200%200%201%203%2017.75zm13.25%207.25c-.444%200-.87.068-1.271.193a.75.75%200%200%201-.449-1.431a5.75%205.75%200%200%201%206.697%202.608a.75.75%200%200%201-1.297.752a4.25%204.25%200%200%200-3.68-2.122m-3.553.653a.75.75%200%200%201%20.15%201.05A4.23%204.23%200%200%200%2012%2017.75v2a.75.75%200%200%201-1.5%200v-2c0-1.292.427-2.486%201.147-3.446a.75.75%200%200%201%201.05-.15M21.25%2017a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200v-2a.75.75%200%200%201%20.75-.75m-6.715.4a1.75%201.75%200%200%201%203.465.35v4a.75.75%200%200%200%201.5%200v-4a3.25%203.25%200%200%200-6.435-.648a.75.75%200%201%200%201.47.298m-.035%202.35a.75.75%200%200%200-1.5%200v2a.75.75%200%200%200%201.5%200zm2.5-2a.75.75%200%200%200-1.5%200v4.5a.75.75%200%200%200%201.5%200z%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%22M3%206.25A3.25%203.25%200%200%201%206.25%203h11.5A3.25%203.25%200%200%201%2021%206.25v6.704a6.8%206.8%200%200%200-1.5-1.122V8.5h-15v9.25c0%20.966.784%201.75%201.75%201.75H9.5v.25c0%20.49.201.932.525%201.25H6.25A3.25%203.25%200%200%201%203%2017.75zm13.25%207.25c-.444%200-.87.068-1.271.193a.75.75%200%200%201-.449-1.431a5.75%205.75%200%200%201%206.697%202.608a.75.75%200%200%201-1.297.752a4.25%204.25%200%200%200-3.68-2.122m-3.553.653a.75.75%200%200%201%20.15%201.05A4.23%204.23%200%200%200%2012%2017.75v2a.75.75%200%200%201-1.5%200v-2c0-1.292.427-2.486%201.147-3.446a.75.75%200%200%201%201.05-.15M21.25%2017a.75.75%200%200%201%20.75.75v2a.75.75%200%200%201-1.5%200v-2a.75.75%200%200%201%20.75-.75m-6.715.4a1.75%201.75%200%200%201%203.465.35v4a.75.75%200%200%200%201.5%200v-4a3.25%203.25%200%200%200-6.435-.648a.75.75%200%201%200%201.47.298m-.035%202.35a.75.75%200%200%200-1.5%200v2a.75.75%200%200%200%201.5%200zm2.5-2a.75.75%200%200%200-1.5%200v4.5a.75.75%200%200%200%201.5%200z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/window-fingerprint-24-filled.svg?color=%231a73e8&size=48