UNPKG

@icon-park/vue-next

Version:
36 lines 1.12 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export default IconWrapper('alignment-bottom-right', true, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("rect", { "x": "6", "y": "6", "width": "36", "height": "36", "rx": "3", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M24 32V36", "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M30 24V36", "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M36 28V36", "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap }, null)]); });