at badge plus icon

at-badge-plus from Framework7 Icons by Vladimir Kharlampidi · Outline · MIT Free for personal and commercial use.

Name
at-badge-plus
Set
Framework7 Icons
Style
Outline
Viewbox
56×56
License
MIT

Related icons in Framework7 Icons

Use the at badge plus icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M11.078 28.084c6.019 0 11.078-5.038 11.078-11.078c0-6.084-4.994-11.078-11.078-11.078C5.016 5.928 0 10.922 0 17.006s5.016 11.078 11.078 11.078M33.8 6.299c-3.511 0-7.48.61-11.23 2.594a13.3 13.3 0 0 1 1.57 3.032C27.28 10.31 30.42 9.7 33.734 9.7c10.25 0 18.798 6.303 18.798 17.62c0 6.608-2.246 11.056-5.822 11.056c-2.4 0-3.773-1.395-3.773-3.772V19.819c0-1.156-.655-1.897-1.745-1.897s-1.788.741-1.788 1.897v2.508h-.196c-1.112-2.705-3.838-4.405-7.066-4.405c-5.648 0-9.616 4.819-9.616 11.753c0 6.957 3.947 11.842 9.704 11.842c3.358 0 6.04-1.898 7.283-5.016h.196c.415 3.14 2.966 5.016 6.433 5.016c6.084 0 9.857-5.954 9.857-14.328C56 14.52 46.667 6.3 33.8 6.3M11.1 24.202c-.764 0-1.44-.523-1.44-1.352v-4.514H5.496c-.741 0-1.352-.61-1.352-1.33c0-.742.61-1.352 1.352-1.352h4.166V11.14c0-.83.675-1.33 1.439-1.33c.741 0 1.417.5 1.417 1.33v4.514h4.165c.742 0 1.33.61 1.33 1.352c0 .72-.588 1.33-1.33 1.33h-4.165v4.514c0 .829-.676 1.352-1.417 1.352m21.72 13.847c-3.882 0-6.39-3.249-6.39-8.395c0-5.103 2.486-8.33 6.411-8.33c3.99 0 6.52 3.183 6.52 8.22c0 5.169-2.573 8.505-6.542 8.505m1.068 14.633c3.598 0 6.978-.524 9.202-1.178c1.68-.545 1.963-1.265 1.963-2.072c0-.806-.632-1.439-1.44-1.439q-.358 0-.915.131c-2.66.72-5.038 1.134-8.112 1.134c-11.034 0-19.43-6.259-20.172-18.667c-1.068.306-2.202.48-3.336.48h-.327c.872 14.087 10.794 21.61 23.137 21.61"/></svg>

React

import type { SVGProps } from "react";

export function F7AtBadgePlus(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="M11.078 28.084c6.019 0 11.078-5.038 11.078-11.078c0-6.084-4.994-11.078-11.078-11.078C5.016 5.928 0 10.922 0 17.006s5.016 11.078 11.078 11.078M33.8 6.299c-3.511 0-7.48.61-11.23 2.594a13.3 13.3 0 0 1 1.57 3.032C27.28 10.31 30.42 9.7 33.734 9.7c10.25 0 18.798 6.303 18.798 17.62c0 6.608-2.246 11.056-5.822 11.056c-2.4 0-3.773-1.395-3.773-3.772V19.819c0-1.156-.655-1.897-1.745-1.897s-1.788.741-1.788 1.897v2.508h-.196c-1.112-2.705-3.838-4.405-7.066-4.405c-5.648 0-9.616 4.819-9.616 11.753c0 6.957 3.947 11.842 9.704 11.842c3.358 0 6.04-1.898 7.283-5.016h.196c.415 3.14 2.966 5.016 6.433 5.016c6.084 0 9.857-5.954 9.857-14.328C56 14.52 46.667 6.3 33.8 6.3M11.1 24.202c-.764 0-1.44-.523-1.44-1.352v-4.514H5.496c-.741 0-1.352-.61-1.352-1.33c0-.742.61-1.352 1.352-1.352h4.166V11.14c0-.83.675-1.33 1.439-1.33c.741 0 1.417.5 1.417 1.33v4.514h4.165c.742 0 1.33.61 1.33 1.352c0 .72-.588 1.33-1.33 1.33h-4.165v4.514c0 .829-.676 1.352-1.417 1.352m21.72 13.847c-3.882 0-6.39-3.249-6.39-8.395c0-5.103 2.486-8.33 6.411-8.33c3.99 0 6.52 3.183 6.52 8.22c0 5.169-2.573 8.505-6.542 8.505m1.068 14.633c3.598 0 6.978-.524 9.202-1.178c1.68-.545 1.963-1.265 1.963-2.072c0-.806-.632-1.439-1.44-1.439q-.358 0-.915.131c-2.66.72-5.038 1.134-8.112 1.134c-11.034 0-19.43-6.259-20.172-18.667c-1.068.306-2.202.48-3.336.48h-.327c.872 14.087 10.794 21.61 23.137 21.61"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M11.078 28.084c6.019 0 11.078-5.038 11.078-11.078c0-6.084-4.994-11.078-11.078-11.078C5.016 5.928 0 10.922 0 17.006s5.016 11.078 11.078 11.078M33.8 6.299c-3.511 0-7.48.61-11.23 2.594a13.3 13.3 0 0 1 1.57 3.032C27.28 10.31 30.42 9.7 33.734 9.7c10.25 0 18.798 6.303 18.798 17.62c0 6.608-2.246 11.056-5.822 11.056c-2.4 0-3.773-1.395-3.773-3.772V19.819c0-1.156-.655-1.897-1.745-1.897s-1.788.741-1.788 1.897v2.508h-.196c-1.112-2.705-3.838-4.405-7.066-4.405c-5.648 0-9.616 4.819-9.616 11.753c0 6.957 3.947 11.842 9.704 11.842c3.358 0 6.04-1.898 7.283-5.016h.196c.415 3.14 2.966 5.016 6.433 5.016c6.084 0 9.857-5.954 9.857-14.328C56 14.52 46.667 6.3 33.8 6.3M11.1 24.202c-.764 0-1.44-.523-1.44-1.352v-4.514H5.496c-.741 0-1.352-.61-1.352-1.33c0-.742.61-1.352 1.352-1.352h4.166V11.14c0-.83.675-1.33 1.439-1.33c.741 0 1.417.5 1.417 1.33v4.514h4.165c.742 0 1.33.61 1.33 1.352c0 .72-.588 1.33-1.33 1.33h-4.165v4.514c0 .829-.676 1.352-1.417 1.352m21.72 13.847c-3.882 0-6.39-3.249-6.39-8.395c0-5.103 2.486-8.33 6.411-8.33c3.99 0 6.52 3.183 6.52 8.22c0 5.169-2.573 8.505-6.542 8.505m1.068 14.633c3.598 0 6.978-.524 9.202-1.178c1.68-.545 1.963-1.265 1.963-2.072c0-.806-.632-1.439-1.44-1.439q-.358 0-.915.131c-2.66.72-5.038 1.134-8.112 1.134c-11.034 0-19.43-6.259-20.172-18.667c-1.068.306-2.202.48-3.336.48h-.327c.872 14.087 10.794 21.61 23.137 21.61"/></svg>
</template>

CSS

.icon-at-badge-plus {
  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%22M11.078%2028.084c6.019%200%2011.078-5.038%2011.078-11.078c0-6.084-4.994-11.078-11.078-11.078C5.016%205.928%200%2010.922%200%2017.006s5.016%2011.078%2011.078%2011.078M33.8%206.299c-3.511%200-7.48.61-11.23%202.594a13.3%2013.3%200%200%201%201.57%203.032C27.28%2010.31%2030.42%209.7%2033.734%209.7c10.25%200%2018.798%206.303%2018.798%2017.62c0%206.608-2.246%2011.056-5.822%2011.056c-2.4%200-3.773-1.395-3.773-3.772V19.819c0-1.156-.655-1.897-1.745-1.897s-1.788.741-1.788%201.897v2.508h-.196c-1.112-2.705-3.838-4.405-7.066-4.405c-5.648%200-9.616%204.819-9.616%2011.753c0%206.957%203.947%2011.842%209.704%2011.842c3.358%200%206.04-1.898%207.283-5.016h.196c.415%203.14%202.966%205.016%206.433%205.016c6.084%200%209.857-5.954%209.857-14.328C56%2014.52%2046.667%206.3%2033.8%206.3M11.1%2024.202c-.764%200-1.44-.523-1.44-1.352v-4.514H5.496c-.741%200-1.352-.61-1.352-1.33c0-.742.61-1.352%201.352-1.352h4.166V11.14c0-.83.675-1.33%201.439-1.33c.741%200%201.417.5%201.417%201.33v4.514h4.165c.742%200%201.33.61%201.33%201.352c0%20.72-.588%201.33-1.33%201.33h-4.165v4.514c0%20.829-.676%201.352-1.417%201.352m21.72%2013.847c-3.882%200-6.39-3.249-6.39-8.395c0-5.103%202.486-8.33%206.411-8.33c3.99%200%206.52%203.183%206.52%208.22c0%205.169-2.573%208.505-6.542%208.505m1.068%2014.633c3.598%200%206.978-.524%209.202-1.178c1.68-.545%201.963-1.265%201.963-2.072c0-.806-.632-1.439-1.44-1.439q-.358%200-.915.131c-2.66.72-5.038%201.134-8.112%201.134c-11.034%200-19.43-6.259-20.172-18.667c-1.068.306-2.202.48-3.336.48h-.327c.872%2014.087%2010.794%2021.61%2023.137%2021.61%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%22M11.078%2028.084c6.019%200%2011.078-5.038%2011.078-11.078c0-6.084-4.994-11.078-11.078-11.078C5.016%205.928%200%2010.922%200%2017.006s5.016%2011.078%2011.078%2011.078M33.8%206.299c-3.511%200-7.48.61-11.23%202.594a13.3%2013.3%200%200%201%201.57%203.032C27.28%2010.31%2030.42%209.7%2033.734%209.7c10.25%200%2018.798%206.303%2018.798%2017.62c0%206.608-2.246%2011.056-5.822%2011.056c-2.4%200-3.773-1.395-3.773-3.772V19.819c0-1.156-.655-1.897-1.745-1.897s-1.788.741-1.788%201.897v2.508h-.196c-1.112-2.705-3.838-4.405-7.066-4.405c-5.648%200-9.616%204.819-9.616%2011.753c0%206.957%203.947%2011.842%209.704%2011.842c3.358%200%206.04-1.898%207.283-5.016h.196c.415%203.14%202.966%205.016%206.433%205.016c6.084%200%209.857-5.954%209.857-14.328C56%2014.52%2046.667%206.3%2033.8%206.3M11.1%2024.202c-.764%200-1.44-.523-1.44-1.352v-4.514H5.496c-.741%200-1.352-.61-1.352-1.33c0-.742.61-1.352%201.352-1.352h4.166V11.14c0-.83.675-1.33%201.439-1.33c.741%200%201.417.5%201.417%201.33v4.514h4.165c.742%200%201.33.61%201.33%201.352c0%20.72-.588%201.33-1.33%201.33h-4.165v4.514c0%20.829-.676%201.352-1.417%201.352m21.72%2013.847c-3.882%200-6.39-3.249-6.39-8.395c0-5.103%202.486-8.33%206.411-8.33c3.99%200%206.52%203.183%206.52%208.22c0%205.169-2.573%208.505-6.542%208.505m1.068%2014.633c3.598%200%206.978-.524%209.202-1.178c1.68-.545%201.963-1.265%201.963-2.072c0-.806-.632-1.439-1.44-1.439q-.358%200-.915.131c-2.66.72-5.038%201.134-8.112%201.134c-11.034%200-19.43-6.259-20.172-18.667c-1.068.306-2.202.48-3.336.48h-.327c.872%2014.087%2010.794%2021.61%2023.137%2021.61%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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