19 lines
515 B
JavaScript
19 lines
515 B
JavaScript
import { createElementVNode as _createElementVNode, openBlock as _openBlock, createElementBlock as _createElementBlock } from "vue"
|
|
|
|
export default function render(_ctx, _cache) {
|
|
return (_openBlock(), _createElementBlock("svg", {
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
viewBox: "0 0 16 16",
|
|
fill: "currentColor",
|
|
"aria-hidden": "true",
|
|
"data-slot": "icon"
|
|
}, [
|
|
_createElementVNode("rect", {
|
|
width: "10",
|
|
height: "10",
|
|
x: "3",
|
|
y: "3",
|
|
rx: "1.5"
|
|
})
|
|
]))
|
|
} |