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 / Assist / svg / BulletPoint.jsx

BulletPoint.jsx in Extendify 3.1.1, at src/Assist/svg/BulletPoint.jsx

25 lines 403 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { __ } from '@wordpress/i18n';
2
3 const bulletPoint = (
4 <svg
5 width="12"
6 height="13"
7 viewBox="0 0 12 13"
8 fill="none"
9 xmlns="http://www.w3.org/2000/svg"
10 >
11 <title>{__('Bullet Point Icon', 'extendify-local')}</title>
12 <rect
13 x="0.6"
14 y="0.998438"
15 width="10.8"
16 height="10.8"
17 rx="5.4"
18 stroke="currentColor"
19 strokeWidth="1.2"
20 />
21 </svg>
22 );
23
24 export default bulletPoint;
25