PluginProbe
Extendify / 3.2.1
Extendify v3.2.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 / Blog.jsx

Blog.jsx in Extendify 3.2.1, at src/Launch/svg/Blog.jsx

21 lines 936 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 Blog = (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>{__('Blog Icon', 'extendify-local')}</title>
15 <path d="M157.69-140q-23.53 0-40.61-17.08T100-197.69v-564.62q0-23.53 17.08-40.61T157.69-820h644.62q23.53 0 40.61 17.08T860-762.31v564.62q0 23.53-17.08 40.61T802.31-140H157.69Zm0-45.39h644.62q4.61 0 8.46-3.84 3.84-3.85 3.84-8.46v-564.62q0-4.61-3.84-8.46-3.85-3.84-8.46-3.84H157.69q-4.61 0-8.46 3.84-3.84 3.85-3.84 8.46v564.62q0 4.61 3.84 8.46 3.85 3.84 8.46 3.84Zm104.39-114.46h435.84v-45.38H262.08v45.38Zm0-159.07h143.84v-201.23H262.08v201.23Zm249 0h186.84v-45.39H511.08v45.39Zm0-155.85h186.84v-45.38H511.08v45.38ZM145.39-185.39v-589.22 589.22Z" />
16 </svg>
17 );
18 };
19
20 export default memo(Blog);
21