@icon-park/vue-next
Version:
Vue3 Icons for IconPark
34 lines • 1.3 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('clear-format', 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 + 'ee094720' + ')'
}, [_createVNode("path", {
"d": "M44.7818 24.1702L31.918 7.09935L14.1348 20.5L27.5 37L30.8556 34.6643L44.7818 24.1702Z",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M27.4998 37L23.6613 40.0748L13.0978 40.074L10.4973 36.6231L4.06543 28.0876L14.4998 20.2248",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M13.2056 40.072L44.5653 40.072",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null)]), _createVNode("defs", null, [_createVNode("clipPath", {
"id": props.id + 'ee094720'
}, [_createVNode("rect", {
"width": "48",
"height": "48",
"fill": props.colors[2]
}, null)])])]);
});