import { html } from "../html.js"; export const svgIcon = Vue.component("svg-icon", { template: html`
`, props: { name: { type: String, required: false, }, classes: { type: String, required: false, }, url: { type: String, required: true, default: "./assets/repeat.svg", }, }, });