# extendify/3.1.3/src/Launch/svg/LeftCaret.jsx

Extendify, version 3.1.3. 28 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.3/code/src/Launch/svg/LeftCaret.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.1.3/raw/src/Launch/svg/LeftCaret.jsx
- Modified: 2026-02-18T22:27:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.3/code/src/Launch/svg/LeftCaret.jsx#L10-L20`.

```jsx
import { memo } from '@wordpress/element';
import { __ } from '@wordpress/i18n';

const LeftCaret = (props) => {
	const { className, ...otherProps } = props;

	return (
		<svg
			className={`icon ${className}`}
			width="24"
			height="24"
			viewBox="0 0 24 24"
			fill="none"
			xmlns="http://www.w3.org/2000/svg"
			{...otherProps}
		>
			<title>{__('Left Caret', 'extendify-local')}</title>
			<path
				d="M15 17.5L10 12L15 6.5"
				stroke="currentColor"
				strokeWidth="1.75"
			/>
		</svg>
	);
};

export default memo(LeftCaret);

```
