UNPKG

@mithril-icons/font-awesome

Version:

Mithril icons generated from https://fontawesome.com

6 lines (4 loc) 442 B
import m from 'mithril' import { SVGAttributes } from '../../svg' const StopCircle: m.Component<SVGAttributes> = { view: ({ attrs }) => m("svg", {"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 512 512", ...attrs }, m("path", {"d":"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"}, )) } export default StopCircle