UNPKG

@icon-park/vue-next

Version:
37 lines 1.17 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export default IconWrapper('agreement', true, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("rect", { "x": "8", "y": "4", "width": "32", "height": "40", "rx": "2", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M16 4H25V20L20.5 16L16 20V4Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M16 28H26", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M16 34H32", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null)]); });