exception-outlined from Ant Design Icons by HeskeyBaozi · Outlined · MIT Free for personal and commercial use.

Name
exception-outlined
Set
Ant Design Icons
Style
Outlined
Viewbox
1024×1024
License
MIT
Aliases
exception, exception-outline

Use the exception icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 1024 1024"><path fill="currentColor" d="M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8m-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm376 116c-119.3 0-216 96.7-216 216s96.7 216 216 216s216-96.7 216-216s-96.7-216-216-216m107.5 323.5C750.8 868.2 712.6 884 672 884s-78.8-15.8-107.5-44.5S520 772.6 520 732s15.8-78.8 44.5-107.5S631.4 580 672 580s78.8 15.8 107.5 44.5S824 691.4 824 732s-15.8 78.8-44.5 107.5M640 812a32 32 0 1 0 64 0a32 32 0 1 0-64 0m12-64h40c4.4 0 8-3.6 8-8V628c0-4.4-3.6-8-8-8h-40c-4.4 0-8 3.6-8 8v112c0 4.4 3.6 8 8 8M440 852H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8"/></svg>

React

import type { SVGProps } from "react";

export function AntDesignExceptionOutlined(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 1024 1024"><path fill="currentColor" d="M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8m-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm376 116c-119.3 0-216 96.7-216 216s96.7 216 216 216s216-96.7 216-216s-96.7-216-216-216m107.5 323.5C750.8 868.2 712.6 884 672 884s-78.8-15.8-107.5-44.5S520 772.6 520 732s15.8-78.8 44.5-107.5S631.4 580 672 580s78.8 15.8 107.5 44.5S824 691.4 824 732s-15.8 78.8-44.5 107.5M640 812a32 32 0 1 0 64 0a32 32 0 1 0-64 0m12-64h40c4.4 0 8-3.6 8-8V628c0-4.4-3.6-8-8-8h-40c-4.4 0-8 3.6-8 8v112c0 4.4 3.6 8 8 8M440 852H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 1024 1024"><path fill="currentColor" d="M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8m-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm376 116c-119.3 0-216 96.7-216 216s96.7 216 216 216s216-96.7 216-216s-96.7-216-216-216m107.5 323.5C750.8 868.2 712.6 884 672 884s-78.8-15.8-107.5-44.5S520 772.6 520 732s15.8-78.8 44.5-107.5S631.4 580 672 580s78.8 15.8 107.5 44.5S824 691.4 824 732s-15.8 78.8-44.5 107.5M640 812a32 32 0 1 0 64 0a32 32 0 1 0-64 0m12-64h40c4.4 0 8-3.6 8-8V628c0-4.4-3.6-8-8-8h-40c-4.4 0-8 3.6-8 8v112c0 4.4 3.6 8 8 8M440 852H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8"/></svg>
</template>

CSS

.icon-exception-outlined {
  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%201024%201024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M688%20312v-48c0-4.4-3.6-8-8-8H296c-4.4%200-8%203.6-8%208v48c0%204.4%203.6%208%208%208h384c4.4%200%208-3.6%208-8m-392%2088c-4.4%200-8%203.6-8%208v48c0%204.4%203.6%208%208%208h184c4.4%200%208-3.6%208-8v-48c0-4.4-3.6-8-8-8zm376%20116c-119.3%200-216%2096.7-216%20216s96.7%20216%20216%20216s216-96.7%20216-216s-96.7-216-216-216m107.5%20323.5C750.8%20868.2%20712.6%20884%20672%20884s-78.8-15.8-107.5-44.5S520%20772.6%20520%20732s15.8-78.8%2044.5-107.5S631.4%20580%20672%20580s78.8%2015.8%20107.5%2044.5S824%20691.4%20824%20732s-15.8%2078.8-44.5%20107.5M640%20812a32%2032%200%201%200%2064%200a32%2032%200%201%200-64%200m12-64h40c4.4%200%208-3.6%208-8V628c0-4.4-3.6-8-8-8h-40c-4.4%200-8%203.6-8%208v112c0%204.4%203.6%208%208%208M440%20852H208V148h560v344c0%204.4%203.6%208%208%208h56c4.4%200%208-3.6%208-8V108c0-17.7-14.3-32-32-32H168c-17.7%200-32%2014.3-32%2032v784c0%2017.7%2014.3%2032%2032%2032h272c4.4%200%208-3.6%208-8v-56c0-4.4-3.6-8-8-8%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%201024%201024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M688%20312v-48c0-4.4-3.6-8-8-8H296c-4.4%200-8%203.6-8%208v48c0%204.4%203.6%208%208%208h384c4.4%200%208-3.6%208-8m-392%2088c-4.4%200-8%203.6-8%208v48c0%204.4%203.6%208%208%208h184c4.4%200%208-3.6%208-8v-48c0-4.4-3.6-8-8-8zm376%20116c-119.3%200-216%2096.7-216%20216s96.7%20216%20216%20216s216-96.7%20216-216s-96.7-216-216-216m107.5%20323.5C750.8%20868.2%20712.6%20884%20672%20884s-78.8-15.8-107.5-44.5S520%20772.6%20520%20732s15.8-78.8%2044.5-107.5S631.4%20580%20672%20580s78.8%2015.8%20107.5%2044.5S824%20691.4%20824%20732s-15.8%2078.8-44.5%20107.5M640%20812a32%2032%200%201%200%2064%200a32%2032%200%201%200-64%200m12-64h40c4.4%200%208-3.6%208-8V628c0-4.4-3.6-8-8-8h-40c-4.4%200-8%203.6-8%208v112c0%204.4%203.6%208%208%208M440%20852H208V148h560v344c0%204.4%203.6%208%208%208h56c4.4%200%208-3.6%208-8V108c0-17.7-14.3-32-32-32H168c-17.7%200-32%2014.3-32%2032v784c0%2017.7%2014.3%2032%2032%2032h272c4.4%200%208-3.6%208-8v-56c0-4.4-3.6-8-8-8%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/ant-design/exception-outlined.svg?color=%231a73e8&size=48