PluginProbe
Extendify / 3.1.1
Extendify v3.1.1
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 / Launch / svg / RightCaret.jsx

RightCaret.jsx in Extendify 3.1.1, at src/Launch/svg/RightCaret.jsx

28 lines 541 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 import { __ } from '@wordpress/i18n';
3
4 const RightCaret = (props) => {
5 const { className, ...otherProps } = props;
6
7 return (
8 <svg
9 className={`icon ${className}`}
10 width="24"
11 height="24"
12 viewBox="0 0 24 24"
13 fill="none"
14 xmlns="http://www.w3.org/2000/svg"
15 {...otherProps}
16 >
17 <title>{__('Right Caret', 'extendify-local')}</title>
18 <path
19 d="M10 17.5L15 12L10 6.5"
20 stroke="currentColor"
21 strokeWidth="1.75"
22 />
23 </svg>
24 );
25 };
26
27 export default memo(RightCaret);
28