File "arrow-down-alt2.js"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/arrow-down-alt2.js
File size: 439 bytes
MIME-type: text/x-java
Charset: utf-8

/**
 * External dependencies
 */
import { SVG } from 'wordpress-components';

const Component = ( { className, size = 20, ...extraProps } ) => {
	return (
		<SVG
			xmlns="http://www.w3.org/2000/svg"
			viewBox="0 0 20 20"
			className={ className }
			width={ size }
			height={ size }
			{ ...extraProps }
		>
			<path d="M5 6l5 5 5-5 2 1-7 7-7-7z" />
		</SVG>
	);
};

const arrowDownAlt2 = <Component />;

export default arrowDownAlt2;