swiper-next
Version:
Vue3 的 Swiper 组件
31 lines (30 loc) • 758 B
JavaScript
import { createVNode } from "vue";
const ICON_PATH_BACK = "M21.781 7.844l-9.063 8.594 9.063 8.594q0.25 0.25 0.25 0.609t-0.25 0.578q-0.25 0.25-0.578 0.25t-0.578-0.25l-9.625-9.125q-0.156-0.125-0.203-0.297t-0.047-0.359q0-0.156 0.047-0.328t0.203-0.297l9.625-9.125q0.25-0.25 0.578-0.25t0.578 0.25q0.25 0.219 0.25 0.578t-0.25 0.578z";
function createSvgIconVNode(path, color = "#000", size = 27) {
return createVNode(
"svg",
{
width: size,
height: size,
viewBox: "0 0 32 32"
},
[
createVNode(
"path",
{
d: path,
fill: color
},
null,
8,
["d", "fill"]
)
],
8,
["width", "height"]
);
}
export {
ICON_PATH_BACK,
createSvgIconVNode
};