UNPKG

@mithril-icons/octicons

Version:

Mithril icons generated from https://octicons.github.com/

6 lines (4 loc) 573 B
import m from 'mithril' import { SVGAttributes } from '../svg' const History: m.Component<SVGAttributes> = { view: ({ attrs }) => m("svg", {"version":1.1,"width":14,"height":16,"viewBox":"0 0 14 16","class":"octicon octicon-history","aria-hidden":"true", ...attrs }, m("path", {"fill-rule":"evenodd","d":"M8 13H6V6h5v2H8v5zM7 1C4.81 1 2.87 2.02 1.59 3.59L0 2v4h4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7s7-3.14 7-7-3.14-7-7-7z"}, )) } export default History