@mithril-icons/font-awesome
Version:
Mithril icons generated from https://fontawesome.com
6 lines (4 loc) • 441 B
text/typescript
import m from 'mithril'
import { SVGAttributes } from '../../svg'
const DotCircle: 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.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z"}, )) }
export default DotCircle