@mithril-icons/font-awesome
Version:
Mithril icons generated from https://fontawesome.com
6 lines (4 loc) • 333 B
text/typescript
import m from 'mithril'
import { SVGAttributes } from '../../svg'
const Circle: 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 8z"}, )) }
export default Circle