@icon-park/vue-next
Version:
Vue3 Icons for IconPark
32 lines • 1.21 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('proportional-scaling', true, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("g", {
"clip-path": 'url(#' + props.id + 'd91e5cae' + ')'
}, [_createVNode("path", {
"d": "M22.2679 7C23.0377 5.66667 24.9623 5.66667 25.7321 7L43.0526 37C43.8224 38.3333 42.8601 40 41.3205 40H6.67949C5.13989 40 4.17764 38.3333 4.94744 37L22.2679 7Z",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("path", {
"d": "M19 40L32 18",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M32 40L38 29",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null)]), _createVNode("defs", null, [_createVNode("clipPath", {
"id": props.id + 'd91e5cae'
}, [_createVNode("rect", {
"width": "48",
"height": "48",
"fill": props.colors[2]
}, null)])])]);
});