UNPKG

@icon-park/vue-next

Version:
26 lines 861 B
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export default IconWrapper('drop-down-list', true, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("path", { "d": "M40 28L24 40L8 28", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M8 10H40", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M8 18H40", "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null)]); });