@icon-park/svg
Version:
Pure Svg Icons for IconPark
4 lines • 673 B
JavaScript
import { IconWrapper } from '../runtime';
export default IconWrapper('send', function (props) {
return '' + '<svg width="' + props.size + '" height="' + props.size + '" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">' + '<path d="M43 5L29.7 43L22.1 25.9L5 18.3L43 5Z" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '<path d="M43.0001 5L22.1001 25.9" stroke="' + props.colors[0] + '" stroke-width="' + props.strokeWidth + '" stroke-linecap="' + props.strokeLinecap + '" stroke-linejoin="' + props.strokeLinejoin + '"/>' + '</svg>';
});