UNPKG

@icon-park/vue-next

Version:
41 lines 1.18 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export default IconWrapper('disk-two', true, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("rect", { "x": "4", "y": "13", "width": "32", "height": "22", "rx": "2", "stroke": props.colors[0], "stroke-width": props.strokeWidth }, null), _createVNode("path", { "d": "M4 13H14V35H4V13Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M36 19H44V29H36", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("circle", { "cx": "30", "cy": "21", "r": "2", "fill": props.colors[0] }, null), _createVNode("circle", { "cx": "30", "cy": "27", "r": "2", "fill": props.colors[0] }, null)]); });