PluginProbe
Extendify / 3.0.4
Extendify v3.0.4
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 / LandingPage.jsx

LandingPage.jsx in Extendify 3.0.4, at src/Launch/svg/LandingPage.jsx

21 lines 748 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 LandingPage = (props) => {
5 const { className, ...otherProps } = props;
6
7 return (
8 <svg
9 xmlns="http://www.w3.org/2000/svg"
10 viewBox="0 -960 960 960"
11 className={className}
12 {...otherProps}
13 >
14 <title>{__('Landing Page Icon', 'extendify-local')}</title>
15 <path d="M197.69-140q-23.59 0-40.64-17.05T140-197.69v-564.62q0-23.59 17.05-40.64T197.69-820h564.62q23.59 0 40.64 17.05T820-762.31v564.62q0 23.59-17.05 40.64T762.31-140H197.69Zm0-45.39h564.62q5.38 0 8.84-3.46t3.46-8.84v-496.92H185.39v496.92q0 5.38 3.46 8.84t8.84 3.46ZM280-497.31v-45.38h392.69v45.38H280Zm0 160v-45.38h232.69v45.38H280Z" />
16 </svg>
17 );
18 };
19
20 export default memo(LandingPage);
21