outlook severe icon
outlook-severe from Carbon by IBM · Outline · Planning · Apache-2.0 Free for personal and commercial use.
- Name
- outlook-severe
- Set
- Carbon
- Style
- Outline
- Category
- Planning
- Viewbox
- 32×32
- License
- Apache 2.0
More planning icons from Carbon
accumulation-iceaccumulation-precipitationaccumulation-rainaccumulation-snowagriculture-analyticsairline-digital-gateairline-manage-gatesairline-passenger-careairline-rapid-boardairport-01airport-02airport-locationalarmalarm-addalarm-subtractarray-date-timearray-timearrivalbaggage-claimbarbicyclebootbuoybus
Use the outlook severe icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="none" d="M15.125 19h1.75v5.5h-1.75ZM17 27a1 1 0 1 0-1 1a1 1 0 0 0 1-1"/><path fill="currentColor" d="m24.908 28.94l-8.076-14.452a.953.953 0 0 0-1.664 0L7.092 28.94A.712.712 0 0 0 7.713 30h16.574a.712.712 0 0 0 .621-1.06M15.125 19h1.75v5.5h-1.75ZM16 28a1 1 0 1 1 1-1a1 1 0 0 1-1 1"/><path fill="currentColor" d="M24.8 9.136a8.994 8.994 0 0 0-17.6 0a6.493 6.493 0 0 0 .915 12.845L9.222 20H8.5a4.48 4.48 0 0 1-3.37-7.456l5.298 5.297l1.013-1.814l-4.66-4.66a4.4 4.4 0 0 1 1.363-.348l.816-.064l.099-.812q.037-.291.097-.573l3.78 3.78l1.014-1.814l-4.014-4.014a7 7 0 0 1 1.975-2.197L25.886 19.3a4.46 4.46 0 0 1-2.386.7h-.724l1.107 1.98a6.493 6.493 0 0 0 .918-12.844Zm2.5 8.75L13.782 4.368a6.974 6.974 0 0 1 9.16 5.775l.099.812l.815.064A4.517 4.517 0 0 1 28 15.5a4.46 4.46 0 0 1-.7 2.386"/></svg>
React
import type { SVGProps } from "react";
export function CarbonOutlookSevere(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="none" d="M15.125 19h1.75v5.5h-1.75ZM17 27a1 1 0 1 0-1 1a1 1 0 0 0 1-1"/><path fill="currentColor" d="m24.908 28.94l-8.076-14.452a.953.953 0 0 0-1.664 0L7.092 28.94A.712.712 0 0 0 7.713 30h16.574a.712.712 0 0 0 .621-1.06M15.125 19h1.75v5.5h-1.75ZM16 28a1 1 0 1 1 1-1a1 1 0 0 1-1 1"/><path fill="currentColor" d="M24.8 9.136a8.994 8.994 0 0 0-17.6 0a6.493 6.493 0 0 0 .915 12.845L9.222 20H8.5a4.48 4.48 0 0 1-3.37-7.456l5.298 5.297l1.013-1.814l-4.66-4.66a4.4 4.4 0 0 1 1.363-.348l.816-.064l.099-.812q.037-.291.097-.573l3.78 3.78l1.014-1.814l-4.014-4.014a7 7 0 0 1 1.975-2.197L25.886 19.3a4.46 4.46 0 0 1-2.386.7h-.724l1.107 1.98a6.493 6.493 0 0 0 .918-12.844Zm2.5 8.75L13.782 4.368a6.974 6.974 0 0 1 9.16 5.775l.099.812l.815.064A4.517 4.517 0 0 1 28 15.5a4.46 4.46 0 0 1-.7 2.386"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="none" d="M15.125 19h1.75v5.5h-1.75ZM17 27a1 1 0 1 0-1 1a1 1 0 0 0 1-1"/><path fill="currentColor" d="m24.908 28.94l-8.076-14.452a.953.953 0 0 0-1.664 0L7.092 28.94A.712.712 0 0 0 7.713 30h16.574a.712.712 0 0 0 .621-1.06M15.125 19h1.75v5.5h-1.75ZM16 28a1 1 0 1 1 1-1a1 1 0 0 1-1 1"/><path fill="currentColor" d="M24.8 9.136a8.994 8.994 0 0 0-17.6 0a6.493 6.493 0 0 0 .915 12.845L9.222 20H8.5a4.48 4.48 0 0 1-3.37-7.456l5.298 5.297l1.013-1.814l-4.66-4.66a4.4 4.4 0 0 1 1.363-.348l.816-.064l.099-.812q.037-.291.097-.573l3.78 3.78l1.014-1.814l-4.014-4.014a7 7 0 0 1 1.975-2.197L25.886 19.3a4.46 4.46 0 0 1-2.386.7h-.724l1.107 1.98a6.493 6.493 0 0 0 .918-12.844Zm2.5 8.75L13.782 4.368a6.974 6.974 0 0 1 9.16 5.775l.099.812l.815.064A4.517 4.517 0 0 1 28 15.5a4.46 4.46 0 0 1-.7 2.386"/></svg> </template>
CSS
.icon-outlook-severe {
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%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M15.125%2019h1.75v5.5h-1.75ZM17%2027a1%201%200%201%200-1%201a1%201%200%200%200%201-1%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m24.908%2028.94l-8.076-14.452a.953.953%200%200%200-1.664%200L7.092%2028.94A.712.712%200%200%200%207.713%2030h16.574a.712.712%200%200%200%20.621-1.06M15.125%2019h1.75v5.5h-1.75ZM16%2028a1%201%200%201%201%201-1a1%201%200%200%201-1%201%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24.8%209.136a8.994%208.994%200%200%200-17.6%200a6.493%206.493%200%200%200%20.915%2012.845L9.222%2020H8.5a4.48%204.48%200%200%201-3.37-7.456l5.298%205.297l1.013-1.814l-4.66-4.66a4.4%204.4%200%200%201%201.363-.348l.816-.064l.099-.812q.037-.291.097-.573l3.78%203.78l1.014-1.814l-4.014-4.014a7%207%200%200%201%201.975-2.197L25.886%2019.3a4.46%204.46%200%200%201-2.386.7h-.724l1.107%201.98a6.493%206.493%200%200%200%20.918-12.844Zm2.5%208.75L13.782%204.368a6.974%206.974%200%200%201%209.16%205.775l.099.812l.815.064A4.517%204.517%200%200%201%2028%2015.5a4.46%204.46%200%200%201-.7%202.386%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%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M15.125%2019h1.75v5.5h-1.75ZM17%2027a1%201%200%201%200-1%201a1%201%200%200%200%201-1%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m24.908%2028.94l-8.076-14.452a.953.953%200%200%200-1.664%200L7.092%2028.94A.712.712%200%200%200%207.713%2030h16.574a.712.712%200%200%200%20.621-1.06M15.125%2019h1.75v5.5h-1.75ZM16%2028a1%201%200%201%201%201-1a1%201%200%200%201-1%201%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24.8%209.136a8.994%208.994%200%200%200-17.6%200a6.493%206.493%200%200%200%20.915%2012.845L9.222%2020H8.5a4.48%204.48%200%200%201-3.37-7.456l5.298%205.297l1.013-1.814l-4.66-4.66a4.4%204.4%200%200%201%201.363-.348l.816-.064l.099-.812q.037-.291.097-.573l3.78%203.78l1.014-1.814l-4.014-4.014a7%207%200%200%201%201.975-2.197L25.886%2019.3a4.46%204.46%200%200%201-2.386.7h-.724l1.107%201.98a6.493%206.493%200%200%200%20.918-12.844Zm2.5%208.75L13.782%204.368a6.974%206.974%200%200%201%209.16%205.775l.099.812l.815.064A4.517%204.517%200%200%201%2028%2015.5a4.46%204.46%200%200%201-.7%202.386%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/carbon/outlook-severe.svg?color=%231a73e8&size=48