UNPKG

@icon-park/vue-next

Version:
31 lines 1.21 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export default IconWrapper('curling', true, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("path", { "d": "M38 42H10C6.69 42 4 39.32 4 36V28C4 24.69 6.68 22 10 22H38C41.31 22 44 24.68 44 28V36C44 39.32 41.32 42 38 42Z", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-miterlimit": "2", "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M4 32H44", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-miterlimit": "2", "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M10 22L16.48 7.2C16.79 6.47 17.51 6 18.31 6H35.5C37.43 6 39 7.57 39 9.5C39 11.43 37.43 13 35.5 13H22V22H10Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-miterlimit": "2", "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null)]); });