@icon-park/vue-next
Version:
Vue3 Icons for IconPark
49 lines • 1.52 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('mosaic', true, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"d": "M44 36H36V44H44V36Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M28 36H20V44H28V36Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M12 36H4V44H12V36Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M44 20H36V28H44V20Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M28 20H20V28H28V20Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M12 20H4V28H12V20Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M44 4H36V12H44V4Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M28 4H20V12H28V4Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M12 4H4V12H12V4Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M20 12H12V20H20V12Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M20 28H12V36H20V28Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M36 12H28V20H36V12Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M36 28H28V36H36V28Z",
"fill": props.colors[0]
}, null)]);
});