prompt icon
prompt-20-filled from Fluent UI System Icons by Microsoft Corporation · 20 Filled · MIT Free for personal and commercial use.
- Name
- prompt-20-filled
- Set
- Fluent UI System Icons
- Style
- 20 Filled
- Viewbox
- 20×20
- License
- MIT
11 other variants in Fluent UI System Icons
The same icon in other sets
Use the prompt icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M16.5 2a.5.5 0 0 1 .5.5V3h.5a.5.5 0 0 1 0 1H17v.5a.5.5 0 0 1-1 0V4h-.5a.5.5 0 0 1 0-1h.5v-.5a.5.5 0 0 1 .5-.5m-13 13a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 0 1H4v.5a.5.5 0 0 1-1 0V17h-.5a.5.5 0 0 1 0-1H3v-.5a.5.5 0 0 1 .5-.5M7.501 2c-.65 0-1.126.513-1.239 1.058a4.15 4.15 0 0 1-1.115 2.089c-.714.715-1.54 1-2.087 1.114c-.546.113-1.06.59-1.06 1.241c.001.65.514 1.124 1.059 1.237c.547.113 1.373.399 2.087 1.114s1.001 1.541 1.115 2.09C6.375 12.486 6.85 13 7.5 13s1.126-.514 1.24-1.059a4.13 4.13 0 0 1 1.113-2.087a4.14 4.14 0 0 1 2.088-1.115C12.487 8.626 13 8.151 13 7.5c0-.65-.513-1.126-1.059-1.239a4.14 4.14 0 0 1-2.087-1.114A4.15 4.15 0 0 1 8.74 3.058C8.627 2.513 8.15 2 7.5 2M7 15v-1.057a2.1 2.1 0 0 0 1 0V15a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-1.058a2.1 2.1 0 0 0 0-1H15a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-5a3 3 0 0 1-3-3m3-1.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m.5-2.5a.5.5 0 0 0 0 1H15a.5.5 0 0 0 0-1z"/></svg>
React
import type { SVGProps } from "react";
export function FluentPrompt20Filled(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="M16.5 2a.5.5 0 0 1 .5.5V3h.5a.5.5 0 0 1 0 1H17v.5a.5.5 0 0 1-1 0V4h-.5a.5.5 0 0 1 0-1h.5v-.5a.5.5 0 0 1 .5-.5m-13 13a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 0 1H4v.5a.5.5 0 0 1-1 0V17h-.5a.5.5 0 0 1 0-1H3v-.5a.5.5 0 0 1 .5-.5M7.501 2c-.65 0-1.126.513-1.239 1.058a4.15 4.15 0 0 1-1.115 2.089c-.714.715-1.54 1-2.087 1.114c-.546.113-1.06.59-1.06 1.241c.001.65.514 1.124 1.059 1.237c.547.113 1.373.399 2.087 1.114s1.001 1.541 1.115 2.09C6.375 12.486 6.85 13 7.5 13s1.126-.514 1.24-1.059a4.13 4.13 0 0 1 1.113-2.087a4.14 4.14 0 0 1 2.088-1.115C12.487 8.626 13 8.151 13 7.5c0-.65-.513-1.126-1.059-1.239a4.14 4.14 0 0 1-2.087-1.114A4.15 4.15 0 0 1 8.74 3.058C8.627 2.513 8.15 2 7.5 2M7 15v-1.057a2.1 2.1 0 0 0 1 0V15a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-1.058a2.1 2.1 0 0 0 0-1H15a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-5a3 3 0 0 1-3-3m3-1.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m.5-2.5a.5.5 0 0 0 0 1H15a.5.5 0 0 0 0-1z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M16.5 2a.5.5 0 0 1 .5.5V3h.5a.5.5 0 0 1 0 1H17v.5a.5.5 0 0 1-1 0V4h-.5a.5.5 0 0 1 0-1h.5v-.5a.5.5 0 0 1 .5-.5m-13 13a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 0 1H4v.5a.5.5 0 0 1-1 0V17h-.5a.5.5 0 0 1 0-1H3v-.5a.5.5 0 0 1 .5-.5M7.501 2c-.65 0-1.126.513-1.239 1.058a4.15 4.15 0 0 1-1.115 2.089c-.714.715-1.54 1-2.087 1.114c-.546.113-1.06.59-1.06 1.241c.001.65.514 1.124 1.059 1.237c.547.113 1.373.399 2.087 1.114s1.001 1.541 1.115 2.09C6.375 12.486 6.85 13 7.5 13s1.126-.514 1.24-1.059a4.13 4.13 0 0 1 1.113-2.087a4.14 4.14 0 0 1 2.088-1.115C12.487 8.626 13 8.151 13 7.5c0-.65-.513-1.126-1.059-1.239a4.14 4.14 0 0 1-2.087-1.114A4.15 4.15 0 0 1 8.74 3.058C8.627 2.513 8.15 2 7.5 2M7 15v-1.057a2.1 2.1 0 0 0 1 0V15a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-1.058a2.1 2.1 0 0 0 0-1H15a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-5a3 3 0 0 1-3-3m3-1.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5m.5-2.5a.5.5 0 0 0 0 1H15a.5.5 0 0 0 0-1z"/></svg> </template>
CSS
.icon-prompt-20-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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16.5%202a.5.5%200%200%201%20.5.5V3h.5a.5.5%200%200%201%200%201H17v.5a.5.5%200%200%201-1%200V4h-.5a.5.5%200%200%201%200-1h.5v-.5a.5.5%200%200%201%20.5-.5m-13%2013a.5.5%200%200%201%20.5.5v.5h.5a.5.5%200%200%201%200%201H4v.5a.5.5%200%200%201-1%200V17h-.5a.5.5%200%200%201%200-1H3v-.5a.5.5%200%200%201%20.5-.5M7.501%202c-.65%200-1.126.513-1.239%201.058a4.15%204.15%200%200%201-1.115%202.089c-.714.715-1.54%201-2.087%201.114c-.546.113-1.06.59-1.06%201.241c.001.65.514%201.124%201.059%201.237c.547.113%201.373.399%202.087%201.114s1.001%201.541%201.115%202.09C6.375%2012.486%206.85%2013%207.5%2013s1.126-.514%201.24-1.059a4.13%204.13%200%200%201%201.113-2.087a4.14%204.14%200%200%201%202.088-1.115C12.487%208.626%2013%208.151%2013%207.5c0-.65-.513-1.126-1.059-1.239a4.14%204.14%200%200%201-2.087-1.114A4.15%204.15%200%200%201%208.74%203.058C8.627%202.513%208.15%202%207.5%202M7%2015v-1.057a2.1%202.1%200%200%200%201%200V15a2%202%200%200%200%202%202h5a2%202%200%200%200%202-2v-5a2%202%200%200%200-2-2h-1.058a2.1%202.1%200%200%200%200-1H15a3%203%200%200%201%203%203v5a3%203%200%200%201-3%203h-5a3%203%200%200%201-3-3m3-1.5a.5.5%200%200%201%20.5-.5h3a.5.5%200%200%201%200%201h-3a.5.5%200%200%201-.5-.5m.5-2.5a.5.5%200%200%200%200%201H15a.5.5%200%200%200%200-1z%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%22M16.5%202a.5.5%200%200%201%20.5.5V3h.5a.5.5%200%200%201%200%201H17v.5a.5.5%200%200%201-1%200V4h-.5a.5.5%200%200%201%200-1h.5v-.5a.5.5%200%200%201%20.5-.5m-13%2013a.5.5%200%200%201%20.5.5v.5h.5a.5.5%200%200%201%200%201H4v.5a.5.5%200%200%201-1%200V17h-.5a.5.5%200%200%201%200-1H3v-.5a.5.5%200%200%201%20.5-.5M7.501%202c-.65%200-1.126.513-1.239%201.058a4.15%204.15%200%200%201-1.115%202.089c-.714.715-1.54%201-2.087%201.114c-.546.113-1.06.59-1.06%201.241c.001.65.514%201.124%201.059%201.237c.547.113%201.373.399%202.087%201.114s1.001%201.541%201.115%202.09C6.375%2012.486%206.85%2013%207.5%2013s1.126-.514%201.24-1.059a4.13%204.13%200%200%201%201.113-2.087a4.14%204.14%200%200%201%202.088-1.115C12.487%208.626%2013%208.151%2013%207.5c0-.65-.513-1.126-1.059-1.239a4.14%204.14%200%200%201-2.087-1.114A4.15%204.15%200%200%201%208.74%203.058C8.627%202.513%208.15%202%207.5%202M7%2015v-1.057a2.1%202.1%200%200%200%201%200V15a2%202%200%200%200%202%202h5a2%202%200%200%200%202-2v-5a2%202%200%200%200-2-2h-1.058a2.1%202.1%200%200%200%200-1H15a3%203%200%200%201%203%203v5a3%203%200%200%201-3%203h-5a3%203%200%200%201-3-3m3-1.5a.5.5%200%200%201%20.5-.5h3a.5.5%200%200%201%200%201h-3a.5.5%200%200%201-.5-.5m.5-2.5a.5.5%200%200%200%200%201H15a.5.5%200%200%200%200-1z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/prompt-20-filled.svg?color=%231a73e8&size=48