guest icon
guest-16 from Fluent UI System Color Icons by Microsoft Corporation · 16 · MIT Free for personal and commercial use.
- Name
- guest-16
- Set
- Fluent UI System Color Icons
- Style
- 16
- Viewbox
- 16×16
- License
- MIT
5 other variants in Fluent UI System Color Icons
The same icon in other sets
Use the guest icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><g fill="none"><path fill="url(#SVG7Pxtwb8U)" fill-rule="evenodd" d="M13 2.5A1.5 1.5 0 0 0 11.5 1h-7A1.5 1.5 0 0 0 3 2.5v11A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5zM7 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z" clip-rule="evenodd"/><path fill="url(#SVGvfpzwleU)" fill-opacity=".7" fill-rule="evenodd" d="M13 2.5A1.5 1.5 0 0 0 11.5 1h-7A1.5 1.5 0 0 0 3 2.5v11A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5zM7 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z" clip-rule="evenodd"/><path fill="url(#SVGf6bohddP)" fill-opacity=".9" d="M5.695 10c-.331 0-.69.238-.72.657c-.023.315.005.922.46 1.453c.461.54 1.269.89 2.565.89s2.104-.35 2.566-.89c.454-.531.482-1.138.46-1.453c-.03-.42-.39-.657-.721-.657z"/><path fill="url(#SVGI5QXEbto)" fill-opacity=".9" d="M6 7a2 2 0 1 1 4 0a2 2 0 0 1-4 0"/><defs><linearGradient id="SVG7Pxtwb8U" x1="-.333" x2="13.577" y1="-2.061" y2="9.543" gradientUnits="userSpaceOnUse"><stop stop-color="#36dff1"/><stop offset=".218" stop-color="#35daf1"/><stop offset="1" stop-color="#2764e7"/></linearGradient><linearGradient id="SVGvfpzwleU" x1="9.548" x2="14.138" y1="2.719" y2="16.698" gradientUnits="userSpaceOnUse"><stop offset=".549" stop-color="#ff6ce8" stop-opacity="0"/><stop offset="1" stop-color="#ff6ce8"/></linearGradient><linearGradient id="SVGf6bohddP" x1="12.549" x2="9.703" y1="15.571" y2="5.021" gradientUnits="userSpaceOnUse"><stop stop-color="#9deaff"/><stop offset="1" stop-color="#fff"/></linearGradient><linearGradient id="SVGI5QXEbto" x1="11.002" x2="4.659" y1="12.429" y2=".796" gradientUnits="userSpaceOnUse"><stop stop-color="#9deaff"/><stop offset="1" stop-color="#fff"/></linearGradient></defs></g></svg>
React
import type { SVGProps } from "react";
export function FluentColorGuest16(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><g fill="none"><path fill="url(#SVG7Pxtwb8U)" fillRule="evenodd" d="M13 2.5A1.5 1.5 0 0 0 11.5 1h-7A1.5 1.5 0 0 0 3 2.5v11A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5zM7 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z" clipRule="evenodd"/><path fill="url(#SVGvfpzwleU)" fillOpacity=".7" fillRule="evenodd" d="M13 2.5A1.5 1.5 0 0 0 11.5 1h-7A1.5 1.5 0 0 0 3 2.5v11A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5zM7 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z" clipRule="evenodd"/><path fill="url(#SVGf6bohddP)" fillOpacity=".9" d="M5.695 10c-.331 0-.69.238-.72.657c-.023.315.005.922.46 1.453c.461.54 1.269.89 2.565.89s2.104-.35 2.566-.89c.454-.531.482-1.138.46-1.453c-.03-.42-.39-.657-.721-.657z"/><path fill="url(#SVGI5QXEbto)" fillOpacity=".9" d="M6 7a2 2 0 1 1 4 0a2 2 0 0 1-4 0"/><defs><linearGradient id="SVG7Pxtwb8U" x1="-.333" x2="13.577" y1="-2.061" y2="9.543" gradientUnits="userSpaceOnUse"><stop stopColor="#36dff1"/><stop offset=".218" stopColor="#35daf1"/><stop offset="1" stopColor="#2764e7"/></linearGradient><linearGradient id="SVGvfpzwleU" x1="9.548" x2="14.138" y1="2.719" y2="16.698" gradientUnits="userSpaceOnUse"><stop offset=".549" stopColor="#ff6ce8" stopOpacity="0"/><stop offset="1" stopColor="#ff6ce8"/></linearGradient><linearGradient id="SVGf6bohddP" x1="12.549" x2="9.703" y1="15.571" y2="5.021" gradientUnits="userSpaceOnUse"><stop stopColor="#9deaff"/><stop offset="1" stopColor="#fff"/></linearGradient><linearGradient id="SVGI5QXEbto" x1="11.002" x2="4.659" y1="12.429" y2=".796" gradientUnits="userSpaceOnUse"><stop stopColor="#9deaff"/><stop offset="1" stopColor="#fff"/></linearGradient></defs></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><g fill="none"><path fill="url(#SVG7Pxtwb8U)" fill-rule="evenodd" d="M13 2.5A1.5 1.5 0 0 0 11.5 1h-7A1.5 1.5 0 0 0 3 2.5v11A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5zM7 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z" clip-rule="evenodd"/><path fill="url(#SVGvfpzwleU)" fill-opacity=".7" fill-rule="evenodd" d="M13 2.5A1.5 1.5 0 0 0 11.5 1h-7A1.5 1.5 0 0 0 3 2.5v11A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5zM7 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z" clip-rule="evenodd"/><path fill="url(#SVGf6bohddP)" fill-opacity=".9" d="M5.695 10c-.331 0-.69.238-.72.657c-.023.315.005.922.46 1.453c.461.54 1.269.89 2.565.89s2.104-.35 2.566-.89c.454-.531.482-1.138.46-1.453c-.03-.42-.39-.657-.721-.657z"/><path fill="url(#SVGI5QXEbto)" fill-opacity=".9" d="M6 7a2 2 0 1 1 4 0a2 2 0 0 1-4 0"/><defs><linearGradient id="SVG7Pxtwb8U" x1="-.333" x2="13.577" y1="-2.061" y2="9.543" gradientUnits="userSpaceOnUse"><stop stop-color="#36dff1"/><stop offset=".218" stop-color="#35daf1"/><stop offset="1" stop-color="#2764e7"/></linearGradient><linearGradient id="SVGvfpzwleU" x1="9.548" x2="14.138" y1="2.719" y2="16.698" gradientUnits="userSpaceOnUse"><stop offset=".549" stop-color="#ff6ce8" stop-opacity="0"/><stop offset="1" stop-color="#ff6ce8"/></linearGradient><linearGradient id="SVGf6bohddP" x1="12.549" x2="9.703" y1="15.571" y2="5.021" gradientUnits="userSpaceOnUse"><stop stop-color="#9deaff"/><stop offset="1" stop-color="#fff"/></linearGradient><linearGradient id="SVGI5QXEbto" x1="11.002" x2="4.659" y1="12.429" y2=".796" gradientUnits="userSpaceOnUse"><stop stop-color="#9deaff"/><stop offset="1" stop-color="#fff"/></linearGradient></defs></g></svg> </template>
CSS
.icon-guest-16 {
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%2016%2016%22%3E%3Cg%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22url(%23SVG7Pxtwb8U)%22%20fill-rule%3D%22evenodd%22%20d%3D%22M13%202.5A1.5%201.5%200%200%200%2011.5%201h-7A1.5%201.5%200%200%200%203%202.5v11A1.5%201.5%200%200%200%204.5%2015h7a1.5%201.5%200%200%200%201.5-1.5zM7%203a.5.5%200%200%200%200%201h2a.5.5%200%200%200%200-1z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGvfpzwleU)%22%20fill-opacity%3D%22.7%22%20fill-rule%3D%22evenodd%22%20d%3D%22M13%202.5A1.5%201.5%200%200%200%2011.5%201h-7A1.5%201.5%200%200%200%203%202.5v11A1.5%201.5%200%200%200%204.5%2015h7a1.5%201.5%200%200%200%201.5-1.5zM7%203a.5.5%200%200%200%200%201h2a.5.5%200%200%200%200-1z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGf6bohddP)%22%20fill-opacity%3D%22.9%22%20d%3D%22M5.695%2010c-.331%200-.69.238-.72.657c-.023.315.005.922.46%201.453c.461.54%201.269.89%202.565.89s2.104-.35%202.566-.89c.454-.531.482-1.138.46-1.453c-.03-.42-.39-.657-.721-.657z%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGI5QXEbto)%22%20fill-opacity%3D%22.9%22%20d%3D%22M6%207a2%202%200%201%201%204%200a2%202%200%200%201-4%200%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22SVG7Pxtwb8U%22%20x1%3D%22-.333%22%20x2%3D%2213.577%22%20y1%3D%22-2.061%22%20y2%3D%229.543%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%2336dff1%22%2F%3E%3Cstop%20offset%3D%22.218%22%20stop-color%3D%22%2335daf1%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%232764e7%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGvfpzwleU%22%20x1%3D%229.548%22%20x2%3D%2214.138%22%20y1%3D%222.719%22%20y2%3D%2216.698%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.549%22%20stop-color%3D%22%23ff6ce8%22%20stop-opacity%3D%220%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23ff6ce8%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGf6bohddP%22%20x1%3D%2212.549%22%20x2%3D%229.703%22%20y1%3D%2215.571%22%20y2%3D%225.021%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%239deaff%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGI5QXEbto%22%20x1%3D%2211.002%22%20x2%3D%224.659%22%20y1%3D%2212.429%22%20y2%3D%22.796%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%239deaff%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fg%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%2016%2016%22%3E%3Cg%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22url(%23SVG7Pxtwb8U)%22%20fill-rule%3D%22evenodd%22%20d%3D%22M13%202.5A1.5%201.5%200%200%200%2011.5%201h-7A1.5%201.5%200%200%200%203%202.5v11A1.5%201.5%200%200%200%204.5%2015h7a1.5%201.5%200%200%200%201.5-1.5zM7%203a.5.5%200%200%200%200%201h2a.5.5%200%200%200%200-1z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGvfpzwleU)%22%20fill-opacity%3D%22.7%22%20fill-rule%3D%22evenodd%22%20d%3D%22M13%202.5A1.5%201.5%200%200%200%2011.5%201h-7A1.5%201.5%200%200%200%203%202.5v11A1.5%201.5%200%200%200%204.5%2015h7a1.5%201.5%200%200%200%201.5-1.5zM7%203a.5.5%200%200%200%200%201h2a.5.5%200%200%200%200-1z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGf6bohddP)%22%20fill-opacity%3D%22.9%22%20d%3D%22M5.695%2010c-.331%200-.69.238-.72.657c-.023.315.005.922.46%201.453c.461.54%201.269.89%202.565.89s2.104-.35%202.566-.89c.454-.531.482-1.138.46-1.453c-.03-.42-.39-.657-.721-.657z%22%2F%3E%3Cpath%20fill%3D%22url(%23SVGI5QXEbto)%22%20fill-opacity%3D%22.9%22%20d%3D%22M6%207a2%202%200%201%201%204%200a2%202%200%200%201-4%200%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22SVG7Pxtwb8U%22%20x1%3D%22-.333%22%20x2%3D%2213.577%22%20y1%3D%22-2.061%22%20y2%3D%229.543%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%2336dff1%22%2F%3E%3Cstop%20offset%3D%22.218%22%20stop-color%3D%22%2335daf1%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%232764e7%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGvfpzwleU%22%20x1%3D%229.548%22%20x2%3D%2214.138%22%20y1%3D%222.719%22%20y2%3D%2216.698%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.549%22%20stop-color%3D%22%23ff6ce8%22%20stop-opacity%3D%220%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23ff6ce8%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGf6bohddP%22%20x1%3D%2212.549%22%20x2%3D%229.703%22%20y1%3D%2215.571%22%20y2%3D%225.021%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%239deaff%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22SVGI5QXEbto%22%20x1%3D%2211.002%22%20x2%3D%224.659%22%20y1%3D%2212.429%22%20y2%3D%22.796%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%239deaff%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent-color/guest-16.svg?color=%231a73e8&size=48