chat sparkle error icon
chat-sparkle-error from Codicons by Microsoft Corporation · Regular · CC-BY-4.0 Attribution required.
- Name
- chat-sparkle-error
- Set
- Codicons
- Style
- Regular
- Viewbox
- 16×16
- License
- CC BY 4.0
Related icons in Codicons
Use the chat sparkle error icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M13.99 4.002a.24.24 0 0 1 .228.161l.199.612a1.26 1.26 0 0 0 .799.799v-.002l.612.199l.012.003a.242.242 0 0 1 .117.368a.24.24 0 0 1-.117.089l-.611.198a1.26 1.26 0 0 0-.658.508a5.5 5.5 0 0 0-2.565-.913l-.003-.023a.25.25 0 0 1 .044-.14a.23.23 0 0 1 .117-.088l.612-.199a1.26 1.26 0 0 0 .787-.798l.198-.612a.25.25 0 0 1 .088-.117a.25.25 0 0 1 .141-.045M9.2 2.782l.766.25l.083.029l.007.004a1.57 1.57 0 0 1 .91.969l.249.765q.032.09.111.146a.3.3 0 0 0 .175.056h.004c.061 0 .121-.02.171-.056a.3.3 0 0 0 .111-.147l.249-.765a1.57 1.57 0 0 1 .999-.998l.765-.249a.3.3 0 0 0 .203-.285a.3.3 0 0 0-.203-.284l-.015-.004l-.765-.249a1.6 1.6 0 0 1-.618-.381a1.6 1.6 0 0 1-.381-.617l-.249-.765a.3.3 0 0 0-.27-.201h-.015a.3.3 0 0 0-.285.201l-.249.765a1.57 1.57 0 0 1-.984.998l-.595.193h-.002l-.172.055a.304.304 0 0 0-.146.46a.3.3 0 0 0 .146.11m6.798 8.719a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.5 1.293L12.205 11.5l1.231-1.292a.5.5 0 0 0-.707-.707l-1.231 1.292l-1.292-1.292a.5.5 0 0 0-.707.707l1.293 1.292l-1.294 1.294a.5.5 0 0 0 .707.707l1.293-1.294l1.294 1.294a.5.5 0 0 0 .706-.707M4 13.9v-2.898H2.5a1.5 1.5 0 0 1-1.5-1.5v-5a1.5 1.5 0 0 1 1.5-1.5H8v-1H2.5a2.5 2.5 0 0 0-2.5 2.5v5a2.5 2.5 0 0 0 2.5 2.5H3v1.942c0 .842.992 1.292 1.625.737l1.656-1.449a5.4 5.4 0 0 1-.246-1.113z"/></svg>
React
import type { SVGProps } from "react";
export function CodiconChatSparkleError(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M13.99 4.002a.24.24 0 0 1 .228.161l.199.612a1.26 1.26 0 0 0 .799.799v-.002l.612.199l.012.003a.242.242 0 0 1 .117.368a.24.24 0 0 1-.117.089l-.611.198a1.26 1.26 0 0 0-.658.508a5.5 5.5 0 0 0-2.565-.913l-.003-.023a.25.25 0 0 1 .044-.14a.23.23 0 0 1 .117-.088l.612-.199a1.26 1.26 0 0 0 .787-.798l.198-.612a.25.25 0 0 1 .088-.117a.25.25 0 0 1 .141-.045M9.2 2.782l.766.25l.083.029l.007.004a1.57 1.57 0 0 1 .91.969l.249.765q.032.09.111.146a.3.3 0 0 0 .175.056h.004c.061 0 .121-.02.171-.056a.3.3 0 0 0 .111-.147l.249-.765a1.57 1.57 0 0 1 .999-.998l.765-.249a.3.3 0 0 0 .203-.285a.3.3 0 0 0-.203-.284l-.015-.004l-.765-.249a1.6 1.6 0 0 1-.618-.381a1.6 1.6 0 0 1-.381-.617l-.249-.765a.3.3 0 0 0-.27-.201h-.015a.3.3 0 0 0-.285.201l-.249.765a1.57 1.57 0 0 1-.984.998l-.595.193h-.002l-.172.055a.304.304 0 0 0-.146.46a.3.3 0 0 0 .146.11m6.798 8.719a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.5 1.293L12.205 11.5l1.231-1.292a.5.5 0 0 0-.707-.707l-1.231 1.292l-1.292-1.292a.5.5 0 0 0-.707.707l1.293 1.292l-1.294 1.294a.5.5 0 0 0 .707.707l1.293-1.294l1.294 1.294a.5.5 0 0 0 .706-.707M4 13.9v-2.898H2.5a1.5 1.5 0 0 1-1.5-1.5v-5a1.5 1.5 0 0 1 1.5-1.5H8v-1H2.5a2.5 2.5 0 0 0-2.5 2.5v5a2.5 2.5 0 0 0 2.5 2.5H3v1.942c0 .842.992 1.292 1.625.737l1.656-1.449a5.4 5.4 0 0 1-.246-1.113z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M13.99 4.002a.24.24 0 0 1 .228.161l.199.612a1.26 1.26 0 0 0 .799.799v-.002l.612.199l.012.003a.242.242 0 0 1 .117.368a.24.24 0 0 1-.117.089l-.611.198a1.26 1.26 0 0 0-.658.508a5.5 5.5 0 0 0-2.565-.913l-.003-.023a.25.25 0 0 1 .044-.14a.23.23 0 0 1 .117-.088l.612-.199a1.26 1.26 0 0 0 .787-.798l.198-.612a.25.25 0 0 1 .088-.117a.25.25 0 0 1 .141-.045M9.2 2.782l.766.25l.083.029l.007.004a1.57 1.57 0 0 1 .91.969l.249.765q.032.09.111.146a.3.3 0 0 0 .175.056h.004c.061 0 .121-.02.171-.056a.3.3 0 0 0 .111-.147l.249-.765a1.57 1.57 0 0 1 .999-.998l.765-.249a.3.3 0 0 0 .203-.285a.3.3 0 0 0-.203-.284l-.015-.004l-.765-.249a1.6 1.6 0 0 1-.618-.381a1.6 1.6 0 0 1-.381-.617l-.249-.765a.3.3 0 0 0-.27-.201h-.015a.3.3 0 0 0-.285.201l-.249.765a1.57 1.57 0 0 1-.984.998l-.595.193h-.002l-.172.055a.304.304 0 0 0-.146.46a.3.3 0 0 0 .146.11m6.798 8.719a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.5 1.293L12.205 11.5l1.231-1.292a.5.5 0 0 0-.707-.707l-1.231 1.292l-1.292-1.292a.5.5 0 0 0-.707.707l1.293 1.292l-1.294 1.294a.5.5 0 0 0 .707.707l1.293-1.294l1.294 1.294a.5.5 0 0 0 .706-.707M4 13.9v-2.898H2.5a1.5 1.5 0 0 1-1.5-1.5v-5a1.5 1.5 0 0 1 1.5-1.5H8v-1H2.5a2.5 2.5 0 0 0-2.5 2.5v5a2.5 2.5 0 0 0 2.5 2.5H3v1.942c0 .842.992 1.292 1.625.737l1.656-1.449a5.4 5.4 0 0 1-.246-1.113z"/></svg> </template>
CSS
.icon-chat-sparkle-error {
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%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.99%204.002a.24.24%200%200%201%20.228.161l.199.612a1.26%201.26%200%200%200%20.799.799v-.002l.612.199l.012.003a.242.242%200%200%201%20.117.368a.24.24%200%200%201-.117.089l-.611.198a1.26%201.26%200%200%200-.658.508a5.5%205.5%200%200%200-2.565-.913l-.003-.023a.25.25%200%200%201%20.044-.14a.23.23%200%200%201%20.117-.088l.612-.199a1.26%201.26%200%200%200%20.787-.798l.198-.612a.25.25%200%200%201%20.088-.117a.25.25%200%200%201%20.141-.045M9.2%202.782l.766.25l.083.029l.007.004a1.57%201.57%200%200%201%20.91.969l.249.765q.032.09.111.146a.3.3%200%200%200%20.175.056h.004c.061%200%20.121-.02.171-.056a.3.3%200%200%200%20.111-.147l.249-.765a1.57%201.57%200%200%201%20.999-.998l.765-.249a.3.3%200%200%200%20.203-.285a.3.3%200%200%200-.203-.284l-.015-.004l-.765-.249a1.6%201.6%200%200%201-.618-.381a1.6%201.6%200%200%201-.381-.617l-.249-.765a.3.3%200%200%200-.27-.201h-.015a.3.3%200%200%200-.285.201l-.249.765a1.57%201.57%200%200%201-.984.998l-.595.193h-.002l-.172.055a.304.304%200%200%200-.146.46a.3.3%200%200%200%20.146.11m6.798%208.719a4.5%204.5%200%201%201-9%200a4.5%204.5%200%200%201%209%200m-2.5%201.293L12.205%2011.5l1.231-1.292a.5.5%200%200%200-.707-.707l-1.231%201.292l-1.292-1.292a.5.5%200%200%200-.707.707l1.293%201.292l-1.294%201.294a.5.5%200%200%200%20.707.707l1.293-1.294l1.294%201.294a.5.5%200%200%200%20.706-.707M4%2013.9v-2.898H2.5a1.5%201.5%200%200%201-1.5-1.5v-5a1.5%201.5%200%200%201%201.5-1.5H8v-1H2.5a2.5%202.5%200%200%200-2.5%202.5v5a2.5%202.5%200%200%200%202.5%202.5H3v1.942c0%20.842.992%201.292%201.625.737l1.656-1.449a5.4%205.4%200%200%201-.246-1.113z%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%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.99%204.002a.24.24%200%200%201%20.228.161l.199.612a1.26%201.26%200%200%200%20.799.799v-.002l.612.199l.012.003a.242.242%200%200%201%20.117.368a.24.24%200%200%201-.117.089l-.611.198a1.26%201.26%200%200%200-.658.508a5.5%205.5%200%200%200-2.565-.913l-.003-.023a.25.25%200%200%201%20.044-.14a.23.23%200%200%201%20.117-.088l.612-.199a1.26%201.26%200%200%200%20.787-.798l.198-.612a.25.25%200%200%201%20.088-.117a.25.25%200%200%201%20.141-.045M9.2%202.782l.766.25l.083.029l.007.004a1.57%201.57%200%200%201%20.91.969l.249.765q.032.09.111.146a.3.3%200%200%200%20.175.056h.004c.061%200%20.121-.02.171-.056a.3.3%200%200%200%20.111-.147l.249-.765a1.57%201.57%200%200%201%20.999-.998l.765-.249a.3.3%200%200%200%20.203-.285a.3.3%200%200%200-.203-.284l-.015-.004l-.765-.249a1.6%201.6%200%200%201-.618-.381a1.6%201.6%200%200%201-.381-.617l-.249-.765a.3.3%200%200%200-.27-.201h-.015a.3.3%200%200%200-.285.201l-.249.765a1.57%201.57%200%200%201-.984.998l-.595.193h-.002l-.172.055a.304.304%200%200%200-.146.46a.3.3%200%200%200%20.146.11m6.798%208.719a4.5%204.5%200%201%201-9%200a4.5%204.5%200%200%201%209%200m-2.5%201.293L12.205%2011.5l1.231-1.292a.5.5%200%200%200-.707-.707l-1.231%201.292l-1.292-1.292a.5.5%200%200%200-.707.707l1.293%201.292l-1.294%201.294a.5.5%200%200%200%20.707.707l1.293-1.294l1.294%201.294a.5.5%200%200%200%20.706-.707M4%2013.9v-2.898H2.5a1.5%201.5%200%200%201-1.5-1.5v-5a1.5%201.5%200%200%201%201.5-1.5H8v-1H2.5a2.5%202.5%200%200%200-2.5%202.5v5a2.5%202.5%200%200%200%202.5%202.5H3v1.942c0%20.842.992%201.292%201.625.737l1.656-1.449a5.4%205.4%200%200%201-.246-1.113z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/codicon/chat-sparkle-error.svg?color=%231a73e8&size=48