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
