# extendify/0.11.1/src/Onboarding/svg/LeftArrowIcon.jsx

Extendify, version 0.11.1. 25 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.11.1/code/src/Onboarding/svg/LeftArrowIcon.jsx
- Raw: https://pluginprobe.com/plugins/extendify/0.11.1/raw/src/Onboarding/svg/LeftArrowIcon.jsx
- Modified: 2022-07-19T16:46:12+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/0.11.1/code/src/Onboarding/svg/LeftArrowIcon.jsx#L10-L20`.

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

const LeftArrowIcon = (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}>
            <path
                d="M10 17.5L15 12L10 6.5"
                stroke="currentColor"
                strokeWidth="1.75"
            />
        </svg>
    )
}

export default memo(LeftArrowIcon)

```
