exclamationmark shield icon

exclamationmark-shield from Framework7 Icons by Vladimir Kharlampidi · Outline · MIT Free for personal and commercial use.

Name
exclamationmark-shield
Set
Framework7 Icons
Style
Outline
Viewbox
56×56
License
MIT

1 other variant in Framework7 Icons

Related icons in Framework7 Icons

Use the exclamationmark shield icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M27.988 51.672c.375 0 .985-.14 1.594-.469c13.313-7.476 17.906-10.64 17.906-19.195v-17.93c0-2.46-1.078-3.234-3.047-4.078c-2.765-1.148-11.718-4.36-14.484-5.32c-.633-.211-1.289-.352-1.969-.352c-.656 0-1.312.188-1.945.352c-2.766.843-11.719 4.195-14.484 5.32c-1.97.82-3.047 1.617-3.047 4.078v17.93c0 8.554 4.617 11.695 17.906 19.195c.61.328 1.195.469 1.57.469m0-4.266c-.351 0-.75-.14-1.453-.562c-10.828-6.563-14.297-8.485-14.297-15.703V14.78c0-.797.164-1.101.797-1.36c3.563-1.405 10.43-3.843 14.04-5.132q.526-.21.913-.21c.282 0 .563.07.938.21c3.61 1.29 10.406 3.89 14.039 5.133c.633.234.797.562.797 1.36V31.14c0 7.218-3.492 9.117-14.297 15.703c-.703.422-1.102.562-1.477.562m0-15.82c1.125 0 1.782-.633 1.805-1.852l.328-12.375c.024-1.195-.914-2.086-2.156-2.086s-2.156.868-2.133 2.063l.328 12.398c.024 1.196.68 1.852 1.828 1.852m0 7.617c1.36 0 2.532-1.078 2.532-2.437c0-1.36-1.149-2.438-2.532-2.438c-1.36 0-2.508 1.102-2.508 2.438s1.172 2.437 2.508 2.437"/></svg>

React

import type { SVGProps } from "react";

export function F7ExclamationmarkShield(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M27.988 51.672c.375 0 .985-.14 1.594-.469c13.313-7.476 17.906-10.64 17.906-19.195v-17.93c0-2.46-1.078-3.234-3.047-4.078c-2.765-1.148-11.718-4.36-14.484-5.32c-.633-.211-1.289-.352-1.969-.352c-.656 0-1.312.188-1.945.352c-2.766.843-11.719 4.195-14.484 5.32c-1.97.82-3.047 1.617-3.047 4.078v17.93c0 8.554 4.617 11.695 17.906 19.195c.61.328 1.195.469 1.57.469m0-4.266c-.351 0-.75-.14-1.453-.562c-10.828-6.563-14.297-8.485-14.297-15.703V14.78c0-.797.164-1.101.797-1.36c3.563-1.405 10.43-3.843 14.04-5.132q.526-.21.913-.21c.282 0 .563.07.938.21c3.61 1.29 10.406 3.89 14.039 5.133c.633.234.797.562.797 1.36V31.14c0 7.218-3.492 9.117-14.297 15.703c-.703.422-1.102.562-1.477.562m0-15.82c1.125 0 1.782-.633 1.805-1.852l.328-12.375c.024-1.195-.914-2.086-2.156-2.086s-2.156.868-2.133 2.063l.328 12.398c.024 1.196.68 1.852 1.828 1.852m0 7.617c1.36 0 2.532-1.078 2.532-2.437c0-1.36-1.149-2.438-2.532-2.438c-1.36 0-2.508 1.102-2.508 2.438s1.172 2.437 2.508 2.437"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M27.988 51.672c.375 0 .985-.14 1.594-.469c13.313-7.476 17.906-10.64 17.906-19.195v-17.93c0-2.46-1.078-3.234-3.047-4.078c-2.765-1.148-11.718-4.36-14.484-5.32c-.633-.211-1.289-.352-1.969-.352c-.656 0-1.312.188-1.945.352c-2.766.843-11.719 4.195-14.484 5.32c-1.97.82-3.047 1.617-3.047 4.078v17.93c0 8.554 4.617 11.695 17.906 19.195c.61.328 1.195.469 1.57.469m0-4.266c-.351 0-.75-.14-1.453-.562c-10.828-6.563-14.297-8.485-14.297-15.703V14.78c0-.797.164-1.101.797-1.36c3.563-1.405 10.43-3.843 14.04-5.132q.526-.21.913-.21c.282 0 .563.07.938.21c3.61 1.29 10.406 3.89 14.039 5.133c.633.234.797.562.797 1.36V31.14c0 7.218-3.492 9.117-14.297 15.703c-.703.422-1.102.562-1.477.562m0-15.82c1.125 0 1.782-.633 1.805-1.852l.328-12.375c.024-1.195-.914-2.086-2.156-2.086s-2.156.868-2.133 2.063l.328 12.398c.024 1.196.68 1.852 1.828 1.852m0 7.617c1.36 0 2.532-1.078 2.532-2.437c0-1.36-1.149-2.438-2.532-2.438c-1.36 0-2.508 1.102-2.508 2.438s1.172 2.437 2.508 2.437"/></svg>
</template>

CSS

.icon-exclamationmark-shield {
  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%2056%2056%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M27.988%2051.672c.375%200%20.985-.14%201.594-.469c13.313-7.476%2017.906-10.64%2017.906-19.195v-17.93c0-2.46-1.078-3.234-3.047-4.078c-2.765-1.148-11.718-4.36-14.484-5.32c-.633-.211-1.289-.352-1.969-.352c-.656%200-1.312.188-1.945.352c-2.766.843-11.719%204.195-14.484%205.32c-1.97.82-3.047%201.617-3.047%204.078v17.93c0%208.554%204.617%2011.695%2017.906%2019.195c.61.328%201.195.469%201.57.469m0-4.266c-.351%200-.75-.14-1.453-.562c-10.828-6.563-14.297-8.485-14.297-15.703V14.78c0-.797.164-1.101.797-1.36c3.563-1.405%2010.43-3.843%2014.04-5.132q.526-.21.913-.21c.282%200%20.563.07.938.21c3.61%201.29%2010.406%203.89%2014.039%205.133c.633.234.797.562.797%201.36V31.14c0%207.218-3.492%209.117-14.297%2015.703c-.703.422-1.102.562-1.477.562m0-15.82c1.125%200%201.782-.633%201.805-1.852l.328-12.375c.024-1.195-.914-2.086-2.156-2.086s-2.156.868-2.133%202.063l.328%2012.398c.024%201.196.68%201.852%201.828%201.852m0%207.617c1.36%200%202.532-1.078%202.532-2.437c0-1.36-1.149-2.438-2.532-2.438c-1.36%200-2.508%201.102-2.508%202.438s1.172%202.437%202.508%202.437%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%2056%2056%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M27.988%2051.672c.375%200%20.985-.14%201.594-.469c13.313-7.476%2017.906-10.64%2017.906-19.195v-17.93c0-2.46-1.078-3.234-3.047-4.078c-2.765-1.148-11.718-4.36-14.484-5.32c-.633-.211-1.289-.352-1.969-.352c-.656%200-1.312.188-1.945.352c-2.766.843-11.719%204.195-14.484%205.32c-1.97.82-3.047%201.617-3.047%204.078v17.93c0%208.554%204.617%2011.695%2017.906%2019.195c.61.328%201.195.469%201.57.469m0-4.266c-.351%200-.75-.14-1.453-.562c-10.828-6.563-14.297-8.485-14.297-15.703V14.78c0-.797.164-1.101.797-1.36c3.563-1.405%2010.43-3.843%2014.04-5.132q.526-.21.913-.21c.282%200%20.563.07.938.21c3.61%201.29%2010.406%203.89%2014.039%205.133c.633.234.797.562.797%201.36V31.14c0%207.218-3.492%209.117-14.297%2015.703c-.703.422-1.102.562-1.477.562m0-15.82c1.125%200%201.782-.633%201.805-1.852l.328-12.375c.024-1.195-.914-2.086-2.156-2.086s-2.156.868-2.133%202.063l.328%2012.398c.024%201.196.68%201.852%201.828%201.852m0%207.617c1.36%200%202.532-1.078%202.532-2.437c0-1.36-1.149-2.438-2.532-2.438c-1.36%200-2.508%201.102-2.508%202.438s1.172%202.437%202.508%202.437%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/f7/exclamationmark-shield.svg?color=%231a73e8&size=48