12 lines
642 B
JavaScript
12 lines
642 B
JavaScript
|
import { h } from 'vue';
|
||
|
import { replaceable } from "./replaceable.mjs";
|
||
|
export default replaceable('time', h("svg", {
|
||
|
xmlns: "http://www.w3.org/2000/svg",
|
||
|
viewBox: "0 0 512 512"
|
||
|
}, h("path", {
|
||
|
d: "M256,64C150,64,64,150,64,256s86,192,192,192,192-86,192-192S362,64,256,64Z",
|
||
|
style: "\n fill: none;\n stroke: currentColor;\n stroke-miterlimit: 10;\n stroke-width: 32px;\n "
|
||
|
}), h("polyline", {
|
||
|
points: "256 128 256 272 352 272",
|
||
|
style: "\n fill: none;\n stroke: currentColor;\n stroke-linecap: round;\n stroke-linejoin: round;\n stroke-width: 32px;\n "
|
||
|
})));
|