chat hint half icon
chat-hint-half-24-filled from Fluent UI System Icons by Microsoft Corporation · 24 Filled · MIT Free for personal and commercial use.
- Name
- chat-hint-half-24-filled
- Set
- Fluent UI System Icons
- Style
- 24 Filled
- Viewbox
- 24×24
- License
- MIT
5 other variants in Fluent UI System Icons
Related icons in Fluent UI System Icons
chat-add-16-filledchat-arrow-back-16-filledchat-arrow-back-down-16-filledchat-arrow-double-back-16-filledchat-bubbles-question-16-filledchat-checkmark-12-filledchat-cursor-16-filledchat-dismiss-16-filledchat-empty-12-filledchat-help-16-filledchat-history-20-filledchat-lock-16-filledchat-mail-20-filledchat-multiple-12-filledchat-multiple-checkmark-16-filledchat-multiple-heart-16-filledchat-multiple-minus-16-filledchat-multiple-person-16-filledchat-off-16-filledchat-person-20-filledchat-settings-16-filledchat-sparkle-16-filledchat-video-20-filledchat-warning-16-filled
Use the chat hint half icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M3.575 6.618a.75.75 0 0 1 1.266.806A8.53 8.53 0 0 0 3.5 12a8.46 8.46 0 0 0 1.073 4.138l.15.27l-1.112 3.983l3.987-1.112l.27.15A8.46 8.46 0 0 0 12 20.5a8.6 8.6 0 0 0 4.48-1.27a.75.75 0 0 1 .788 1.275A10 10 0 0 1 12 22a9.96 9.96 0 0 1-4.587-1.112l-3.826 1.067a1.25 1.25 0 0 1-1.54-1.54l1.067-3.823A9.96 9.96 0 0 1 2 12c0-1.906.56-3.788 1.575-5.382m13.328 11.059a7.47 7.47 0 0 1-4.9 1.823a7.46 7.46 0 0 1-3.482-.856l-.857-.449l-.56.147l-1.947.506l.654-2.503l-.45-.857v-.002l-.198-.404c-.432-.956-.66-2-.66-3.082c0-1.916.719-3.663 1.9-4.988zm3.378-3.73a.751.751 0 0 1 1.46.346a10.1 10.1 0 0 1-1.303 3.086a.751.751 0 0 1-1.266-.806a8.6 8.6 0 0 0 1.11-2.627m-.801-7.454a.75.75 0 0 1 1.03.244a10 10 0 0 1 1.261 3.105a.75.75 0 0 1-1.463.324a8.6 8.6 0 0 0-1.073-2.64a.75.75 0 0 1 .245-1.033M13.398 2.82a.75.75 0 0 1 .903-.556a10 10 0 0 1 3.085 1.303a.75.75 0 0 1-.805 1.266a8.6 8.6 0 0 0-2.627-1.11a.75.75 0 0 1-.556-.903M9.85 2.233a.75.75 0 0 1 .323 1.464a8.6 8.6 0 0 0-2.64 1.072a.75.75 0 0 1-.788-1.275a10 10 0 0 1 3.105-1.26"/></svg>
React
import type { SVGProps } from "react";
export function FluentChatHintHalf24Filled(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.575 6.618a.75.75 0 0 1 1.266.806A8.53 8.53 0 0 0 3.5 12a8.46 8.46 0 0 0 1.073 4.138l.15.27l-1.112 3.983l3.987-1.112l.27.15A8.46 8.46 0 0 0 12 20.5a8.6 8.6 0 0 0 4.48-1.27a.75.75 0 0 1 .788 1.275A10 10 0 0 1 12 22a9.96 9.96 0 0 1-4.587-1.112l-3.826 1.067a1.25 1.25 0 0 1-1.54-1.54l1.067-3.823A9.96 9.96 0 0 1 2 12c0-1.906.56-3.788 1.575-5.382m13.328 11.059a7.47 7.47 0 0 1-4.9 1.823a7.46 7.46 0 0 1-3.482-.856l-.857-.449l-.56.147l-1.947.506l.654-2.503l-.45-.857v-.002l-.198-.404c-.432-.956-.66-2-.66-3.082c0-1.916.719-3.663 1.9-4.988zm3.378-3.73a.751.751 0 0 1 1.46.346a10.1 10.1 0 0 1-1.303 3.086a.751.751 0 0 1-1.266-.806a8.6 8.6 0 0 0 1.11-2.627m-.801-7.454a.75.75 0 0 1 1.03.244a10 10 0 0 1 1.261 3.105a.75.75 0 0 1-1.463.324a8.6 8.6 0 0 0-1.073-2.64a.75.75 0 0 1 .245-1.033M13.398 2.82a.75.75 0 0 1 .903-.556a10 10 0 0 1 3.085 1.303a.75.75 0 0 1-.805 1.266a8.6 8.6 0 0 0-2.627-1.11a.75.75 0 0 1-.556-.903M9.85 2.233a.75.75 0 0 1 .323 1.464a8.6 8.6 0 0 0-2.64 1.072a.75.75 0 0 1-.788-1.275a10 10 0 0 1 3.105-1.26"/></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.575 6.618a.75.75 0 0 1 1.266.806A8.53 8.53 0 0 0 3.5 12a8.46 8.46 0 0 0 1.073 4.138l.15.27l-1.112 3.983l3.987-1.112l.27.15A8.46 8.46 0 0 0 12 20.5a8.6 8.6 0 0 0 4.48-1.27a.75.75 0 0 1 .788 1.275A10 10 0 0 1 12 22a9.96 9.96 0 0 1-4.587-1.112l-3.826 1.067a1.25 1.25 0 0 1-1.54-1.54l1.067-3.823A9.96 9.96 0 0 1 2 12c0-1.906.56-3.788 1.575-5.382m13.328 11.059a7.47 7.47 0 0 1-4.9 1.823a7.46 7.46 0 0 1-3.482-.856l-.857-.449l-.56.147l-1.947.506l.654-2.503l-.45-.857v-.002l-.198-.404c-.432-.956-.66-2-.66-3.082c0-1.916.719-3.663 1.9-4.988zm3.378-3.73a.751.751 0 0 1 1.46.346a10.1 10.1 0 0 1-1.303 3.086a.751.751 0 0 1-1.266-.806a8.6 8.6 0 0 0 1.11-2.627m-.801-7.454a.75.75 0 0 1 1.03.244a10 10 0 0 1 1.261 3.105a.75.75 0 0 1-1.463.324a8.6 8.6 0 0 0-1.073-2.64a.75.75 0 0 1 .245-1.033M13.398 2.82a.75.75 0 0 1 .903-.556a10 10 0 0 1 3.085 1.303a.75.75 0 0 1-.805 1.266a8.6 8.6 0 0 0-2.627-1.11a.75.75 0 0 1-.556-.903M9.85 2.233a.75.75 0 0 1 .323 1.464a8.6 8.6 0 0 0-2.64 1.072a.75.75 0 0 1-.788-1.275a10 10 0 0 1 3.105-1.26"/></svg> </template>
CSS
.icon-chat-hint-half-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.575%206.618a.75.75%200%200%201%201.266.806A8.53%208.53%200%200%200%203.5%2012a8.46%208.46%200%200%200%201.073%204.138l.15.27l-1.112%203.983l3.987-1.112l.27.15A8.46%208.46%200%200%200%2012%2020.5a8.6%208.6%200%200%200%204.48-1.27a.75.75%200%200%201%20.788%201.275A10%2010%200%200%201%2012%2022a9.96%209.96%200%200%201-4.587-1.112l-3.826%201.067a1.25%201.25%200%200%201-1.54-1.54l1.067-3.823A9.96%209.96%200%200%201%202%2012c0-1.906.56-3.788%201.575-5.382m13.328%2011.059a7.47%207.47%200%200%201-4.9%201.823a7.46%207.46%200%200%201-3.482-.856l-.857-.449l-.56.147l-1.947.506l.654-2.503l-.45-.857v-.002l-.198-.404c-.432-.956-.66-2-.66-3.082c0-1.916.719-3.663%201.9-4.988zm3.378-3.73a.751.751%200%200%201%201.46.346a10.1%2010.1%200%200%201-1.303%203.086a.751.751%200%200%201-1.266-.806a8.6%208.6%200%200%200%201.11-2.627m-.801-7.454a.75.75%200%200%201%201.03.244a10%2010%200%200%201%201.261%203.105a.75.75%200%200%201-1.463.324a8.6%208.6%200%200%200-1.073-2.64a.75.75%200%200%201%20.245-1.033M13.398%202.82a.75.75%200%200%201%20.903-.556a10%2010%200%200%201%203.085%201.303a.75.75%200%200%201-.805%201.266a8.6%208.6%200%200%200-2.627-1.11a.75.75%200%200%201-.556-.903M9.85%202.233a.75.75%200%200%201%20.323%201.464a8.6%208.6%200%200%200-2.64%201.072a.75.75%200%200%201-.788-1.275a10%2010%200%200%201%203.105-1.26%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.575%206.618a.75.75%200%200%201%201.266.806A8.53%208.53%200%200%200%203.5%2012a8.46%208.46%200%200%200%201.073%204.138l.15.27l-1.112%203.983l3.987-1.112l.27.15A8.46%208.46%200%200%200%2012%2020.5a8.6%208.6%200%200%200%204.48-1.27a.75.75%200%200%201%20.788%201.275A10%2010%200%200%201%2012%2022a9.96%209.96%200%200%201-4.587-1.112l-3.826%201.067a1.25%201.25%200%200%201-1.54-1.54l1.067-3.823A9.96%209.96%200%200%201%202%2012c0-1.906.56-3.788%201.575-5.382m13.328%2011.059a7.47%207.47%200%200%201-4.9%201.823a7.46%207.46%200%200%201-3.482-.856l-.857-.449l-.56.147l-1.947.506l.654-2.503l-.45-.857v-.002l-.198-.404c-.432-.956-.66-2-.66-3.082c0-1.916.719-3.663%201.9-4.988zm3.378-3.73a.751.751%200%200%201%201.46.346a10.1%2010.1%200%200%201-1.303%203.086a.751.751%200%200%201-1.266-.806a8.6%208.6%200%200%200%201.11-2.627m-.801-7.454a.75.75%200%200%201%201.03.244a10%2010%200%200%201%201.261%203.105a.75.75%200%200%201-1.463.324a8.6%208.6%200%200%200-1.073-2.64a.75.75%200%200%201%20.245-1.033M13.398%202.82a.75.75%200%200%201%20.903-.556a10%2010%200%200%201%203.085%201.303a.75.75%200%200%201-.805%201.266a8.6%208.6%200%200%200-2.627-1.11a.75.75%200%200%201-.556-.903M9.85%202.233a.75.75%200%200%201%20.323%201.464a8.6%208.6%200%200%200-2.64%201.072a.75.75%200%200%201-.788-1.275a10%2010%200%200%201%203.105-1.26%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/chat-hint-half-24-filled.svg?color=%231a73e8&size=48