PluginProbe
Extendify / 0.11.0
Extendify v0.11.0
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / Onboarding / svg / LeftArrowIcon.jsx

LeftArrowIcon.jsx in Extendify 0.11.0, at src/Onboarding/svg/LeftArrowIcon.jsx

25 lines 582 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { memo } from '@wordpress/element'
2
3 const LeftArrowIcon = (props) => {
4 const { className, ...otherProps } = props
5
6 return (
7 <svg
8 className={`icon ${className}`}
9 width="24"
10 height="24"
11 viewBox="0 0 24 24"
12 fill="none"
13 xmlns="http://www.w3.org/2000/svg"
14 {...otherProps}>
15 <path
16 d="M10 17.5L15 12L10 6.5"
17 stroke="currentColor"
18 strokeWidth="1.75"
19 />
20 </svg>
21 )
22 }
23
24 export default memo(LeftArrowIcon)
25