UNPKG

@icon-park/vue-next

Version:
28 lines 1.01 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export default IconWrapper('two-semicircles', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M44 25C44 13.9543 35.0457 5 24 5C12.9543 5 4 13.9543 4 25H44Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M14 32C14 37.5228 18.4772 42 24 42C29.5228 42 34 37.5228 34 32H14Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null)]); });