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 / OtherSiteTypes.jsx

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

21 lines 899 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 OtherSiteTypes = (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>{__('Other Site Types Icon', 'extendify-local')}</title>
15 <path d="M278.46-276.16h513.85q4.61 0 8.46-3.84 3.84-3.85 3.84-8.46v-460.77H266.15v460.77q0 4.61 3.85 8.46 3.85 3.84 8.46 3.84Zm0 45.39q-23.53 0-40.61-17.08t-17.08-40.61v-513.85q0-23.53 17.08-40.61T278.46-860h513.85q23.52 0 40.61 17.08Q850-825.84 850-802.31v513.85q0 23.53-17.08 40.61-17.09 17.08-40.61 17.08H278.46ZM167.69-120q-23.52 0-40.61-17.08Q110-154.17 110-177.7v-559.22h45.39v559.22q0 4.62 3.84 8.47 3.85 3.84 8.46 3.84h559.23V-120H167.69Zm98.46-694.61v538.45-538.45Z" />
16 </svg>
17 );
18 };
19
20 export default memo(OtherSiteTypes);
21