UNPKG

@icon-park/svg

Version:

Pure Svg Icons for IconPark

4 lines 869 B
import { IconWrapper } from '../runtime'; export default IconWrapper('shopping-cart-one', function (props) { return '<?xml version="1.0" encoding="UTF-8"?>' + '<svg width="' + props.size + '" height="' + props.size + '" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">' + '<circle cx="20.5" cy="41.5" r="3.5" fill="' + props.colors[0] + '"/>' + '<circle cx="37.5" cy="41.5" r="3.5" fill="' + props.colors[0] + '"/>' + '<path d="M5 6L14 12L19 34H39L44 17H25" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<path d="M25 26L32.2727 26L41 26" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '</svg>'; });