@opentiny/vue-icon
Version:
An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.
48 lines (47 loc) • 1.09 kB
JavaScript
import { svg } from "@opentiny/vue-common";
import { createElementBlock, openBlock, createElementVNode } from "vue";
var _hoisted_1 = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
style: {
"enable-background": "new 0 0 16 16"
},
"xml:space": "preserve"
};
var _hoisted_2 = /* @__PURE__ */ createElementVNode(
"rect",
{
style: {
"fill": "none"
}
},
null,
-1
/* HOISTED */
);
var _hoisted_3 = /* @__PURE__ */ createElementVNode(
"path",
{
class: "chevron-down_svg__st1",
d: "M3.16 5.36a.61.61 0 0 1 .79-.07l.09.07L8 9.32l3.96-3.96a.61.61 0 0 1 .79-.07l.09.07c.22.22.24.55.07.79l-.07.09-4.4 4.4a.61.61 0 0 1-.79.07l-.09-.07-4.4-4.4a.628.628 0 0 1 0-.88z"
},
null,
-1
/* HOISTED */
);
var _hoisted_4 = [_hoisted_2, _hoisted_3];
function render(_ctx, _cache) {
return openBlock(), createElementBlock("svg", _hoisted_1, [].concat(_hoisted_4));
}
var ChevronDown = {
render
};
var index = function index2() {
return svg({
name: "IconChevronDown",
component: ChevronDown
})();
};
export {
index as default
};