PluginProbe
Extendify / 3.0.5
Extendify v3.0.5
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 / RefreshIcon.jsx

RefreshIcon.jsx in Extendify 3.0.5, at src/Launch/svg/RefreshIcon.jsx

27 lines 698 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 RefreshIcon = (props) => {
5 const { className, ...otherProps } = props;
6
7 return (
8 <svg
9 className={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>{__('Refresh Icon', 'extendify-local')}</title>
18 <path
19 fill="currentColor"
20 d="M17.65,6.35C16.2,4.9 14.21,4 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C15.73,20 18.84,17.45 19.73,14H17.65C16.83,16.33 14.61,18 12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6C13.66,6 15.14,6.69 16.22,7.78L13,11H20V4L17.65,6.35Z"
21 />
22 </svg>
23 );
24 };
25
26 export default memo(RefreshIcon);
27