UNPKG

@mithril-icons/entypo

Version:

Mithril icons generated from http://www.entypo.com/

4 lines (3 loc) 451 B
import m from 'mithril'; const Circle = { view: ({ attrs }) => m("svg", Object.assign({ "xmlns": "http://www.w3.org/2000/svg", "xmlns:xlink": "http://www.w3.org/1999/xlink", "viewBox": "0 0 20 20", "id": "entypo-circle", "width": 20, "height": 20 }, attrs), m("g", {}, m("path", { "d": "M10 .4A9.6 9.6 0 0 0 .4 10a9.6 9.6 0 1 0 19.2-.001C19.6 4.698 15.301.4 10 .4zm0 17.199A7.6 7.6 0 1 1 10 2.4a7.6 7.6 0 1 1 0 15.199z" }))) }; export default Circle;