@mithril-icons/octicons
Version:
Mithril icons generated from https://octicons.github.com/
4 lines (3 loc) • 424 B
JavaScript
import m from 'mithril';
const Note = { view: ({ attrs }) => m("svg", Object.assign({ "version": 1.1, "width": 14, "height": 16, "viewBox": "0 0 14 16", "class": "octicon octicon-note", "aria-hidden": "true" }, attrs), m("path", { "fill-rule": "evenodd", "d": "M3 10h4V9H3v1zm0-2h6V7H3v1zm0-2h8V5H3v1zm10 6H1V3h12v9zM1 2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H1z" })) };
export default Note;