UNPKG

@icon-park/vue-next

Version:
35 lines 1.25 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export default IconWrapper('find', true, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("path", { "d": "M4 7H44", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M4 23H15", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M4 39H15", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M31.5 34C36.1944 34 40 30.1944 40 25.5C40 20.8056 36.1944 17 31.5 17C26.8056 17 23 20.8056 23 25.5C23 30.1944 26.8056 34 31.5 34Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth }, null), _createVNode("path", { "d": "M37 32L44 39.0505", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null)]); });