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

Name
fx
Set
Framework7 Icons
Style
Outline
Viewbox
56×56
License
MIT

The same icon in other sets

Use the fx icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M28.75 45.332c.797 0 1.242-.258 1.828-1.102l9.375-12.796h.14l9.306 12.82c.539.797 1.078 1.078 1.922 1.078c1.218 0 2.109-.867 2.109-2.062c0-.516-.188-1.055-.492-1.5L42.766 28.059l10.43-13.97c.35-.444.515-.937.515-1.429c0-1.101-.914-1.992-2.016-1.992c-.867 0-1.359.281-1.945 1.125l-9.352 12.96h-.14l-9.305-12.96c-.586-.867-1.055-1.125-1.969-1.125c-1.242 0-2.132.844-2.132 2.016c0 .515.164 1.03.515 1.5l10.055 13.734L27.18 41.887c-.352.468-.516.96-.516 1.453c0 1.125.914 1.992 2.086 1.992m-24.305-.094c1.313 0 2.18-.843 2.18-2.18v-12.82h13.758c1.148 0 1.969-.726 1.969-1.875c0-1.172-.82-1.898-1.97-1.898H6.626V15.027h15.117c1.149 0 1.992-.726 1.992-1.921s-.843-1.946-1.992-1.946H4.422c-1.313 0-2.133.844-2.133 2.156V43.06c0 1.336.82 2.18 2.156 2.18"/></svg>

React

import type { SVGProps } from "react";

export function F7Fx(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="M28.75 45.332c.797 0 1.242-.258 1.828-1.102l9.375-12.796h.14l9.306 12.82c.539.797 1.078 1.078 1.922 1.078c1.218 0 2.109-.867 2.109-2.062c0-.516-.188-1.055-.492-1.5L42.766 28.059l10.43-13.97c.35-.444.515-.937.515-1.429c0-1.101-.914-1.992-2.016-1.992c-.867 0-1.359.281-1.945 1.125l-9.352 12.96h-.14l-9.305-12.96c-.586-.867-1.055-1.125-1.969-1.125c-1.242 0-2.132.844-2.132 2.016c0 .515.164 1.03.515 1.5l10.055 13.734L27.18 41.887c-.352.468-.516.96-.516 1.453c0 1.125.914 1.992 2.086 1.992m-24.305-.094c1.313 0 2.18-.843 2.18-2.18v-12.82h13.758c1.148 0 1.969-.726 1.969-1.875c0-1.172-.82-1.898-1.97-1.898H6.626V15.027h15.117c1.149 0 1.992-.726 1.992-1.921s-.843-1.946-1.992-1.946H4.422c-1.313 0-2.133.844-2.133 2.156V43.06c0 1.336.82 2.18 2.156 2.18"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M28.75 45.332c.797 0 1.242-.258 1.828-1.102l9.375-12.796h.14l9.306 12.82c.539.797 1.078 1.078 1.922 1.078c1.218 0 2.109-.867 2.109-2.062c0-.516-.188-1.055-.492-1.5L42.766 28.059l10.43-13.97c.35-.444.515-.937.515-1.429c0-1.101-.914-1.992-2.016-1.992c-.867 0-1.359.281-1.945 1.125l-9.352 12.96h-.14l-9.305-12.96c-.586-.867-1.055-1.125-1.969-1.125c-1.242 0-2.132.844-2.132 2.016c0 .515.164 1.03.515 1.5l10.055 13.734L27.18 41.887c-.352.468-.516.96-.516 1.453c0 1.125.914 1.992 2.086 1.992m-24.305-.094c1.313 0 2.18-.843 2.18-2.18v-12.82h13.758c1.148 0 1.969-.726 1.969-1.875c0-1.172-.82-1.898-1.97-1.898H6.626V15.027h15.117c1.149 0 1.992-.726 1.992-1.921s-.843-1.946-1.992-1.946H4.422c-1.313 0-2.133.844-2.133 2.156V43.06c0 1.336.82 2.18 2.156 2.18"/></svg>
</template>

CSS

.icon-fx {
  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%22M28.75%2045.332c.797%200%201.242-.258%201.828-1.102l9.375-12.796h.14l9.306%2012.82c.539.797%201.078%201.078%201.922%201.078c1.218%200%202.109-.867%202.109-2.062c0-.516-.188-1.055-.492-1.5L42.766%2028.059l10.43-13.97c.35-.444.515-.937.515-1.429c0-1.101-.914-1.992-2.016-1.992c-.867%200-1.359.281-1.945%201.125l-9.352%2012.96h-.14l-9.305-12.96c-.586-.867-1.055-1.125-1.969-1.125c-1.242%200-2.132.844-2.132%202.016c0%20.515.164%201.03.515%201.5l10.055%2013.734L27.18%2041.887c-.352.468-.516.96-.516%201.453c0%201.125.914%201.992%202.086%201.992m-24.305-.094c1.313%200%202.18-.843%202.18-2.18v-12.82h13.758c1.148%200%201.969-.726%201.969-1.875c0-1.172-.82-1.898-1.97-1.898H6.626V15.027h15.117c1.149%200%201.992-.726%201.992-1.921s-.843-1.946-1.992-1.946H4.422c-1.313%200-2.133.844-2.133%202.156V43.06c0%201.336.82%202.18%202.156%202.18%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%22M28.75%2045.332c.797%200%201.242-.258%201.828-1.102l9.375-12.796h.14l9.306%2012.82c.539.797%201.078%201.078%201.922%201.078c1.218%200%202.109-.867%202.109-2.062c0-.516-.188-1.055-.492-1.5L42.766%2028.059l10.43-13.97c.35-.444.515-.937.515-1.429c0-1.101-.914-1.992-2.016-1.992c-.867%200-1.359.281-1.945%201.125l-9.352%2012.96h-.14l-9.305-12.96c-.586-.867-1.055-1.125-1.969-1.125c-1.242%200-2.132.844-2.132%202.016c0%20.515.164%201.03.515%201.5l10.055%2013.734L27.18%2041.887c-.352.468-.516.96-.516%201.453c0%201.125.914%201.992%202.086%201.992m-24.305-.094c1.313%200%202.18-.843%202.18-2.18v-12.82h13.758c1.148%200%201.969-.726%201.969-1.875c0-1.172-.82-1.898-1.97-1.898H6.626V15.027h15.117c1.149%200%201.992-.726%201.992-1.921s-.843-1.946-1.992-1.946H4.422c-1.313%200-2.133.844-2.133%202.156V43.06c0%201.336.82%202.18%202.156%202.18%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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