@mithril-icons/font-awesome
Version:
Mithril icons generated from https://fontawesome.com
6 lines (4 loc) • 456 B
text/typescript
import m from 'mithril'
import { SVGAttributes } from '../../svg'
const ToggleOn: m.Component<SVGAttributes> = { view: ({ attrs }) => m("svg", {"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 576 512", ...attrs }, m("path", {"d":"M384 64H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm0 320c-70.8 0-128-57.3-128-128 0-70.8 57.3-128 128-128 70.8 0 128 57.3 128 128 0 70.8-57.3 128-128 128z"}, )) }
export default ToggleOn