@mithril-icons/octicons
Version:
Mithril icons generated from https://octicons.github.com/
4 lines (3 loc) • 447 B
JavaScript
import m from 'mithril';
const CreditCard = { view: ({ attrs }) => m("svg", Object.assign({ "version": 1.1, "width": 16, "height": 16, "viewBox": "0 0 16 16", "class": "octicon octicon-credit-card", "aria-hidden": "true" }, attrs), m("path", { "fill-rule": "evenodd", "d": "M12 9H2V8h10v1zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 3H1v6h14V6zm0-3H1v1h14V3zm-9 7H2v1h4v-1z" })) };
export default CreditCard;