support.js in Extendify 0.9.3, at src/Library/components/icons/library/support.js
| 1 | /** |
| 2 | * WordPress dependencies |
| 3 | */ |
| 4 | import { SVG, Circle } from '@wordpress/primitives' |
| 5 | |
| 6 | const layouts = ( |
| 7 | <SVG |
| 8 | width="24" |
| 9 | height="24" |
| 10 | viewBox="0 0 24 24" |
| 11 | fill="none" |
| 12 | xmlns="http://www.w3.org/2000/svg"> |
| 13 | <Circle |
| 14 | cx="12" |
| 15 | cy="12" |
| 16 | r="7.25" |
| 17 | stroke="currentColor" |
| 18 | strokeWidth="1.5" |
| 19 | /> |
| 20 | <Circle |
| 21 | cx="12" |
| 22 | cy="12" |
| 23 | r="4.25" |
| 24 | stroke="currentColor" |
| 25 | strokeWidth="1.5" |
| 26 | /> |
| 27 | <Circle |
| 28 | cx="11.9999" |
| 29 | cy="12.2" |
| 30 | r="6" |
| 31 | transform="rotate(-45 11.9999 12.2)" |
| 32 | stroke="currentColor" |
| 33 | strokeWidth="3" |
| 34 | strokeDasharray="1.5 4" |
| 35 | /> |
| 36 | </SVG> |
| 37 | ) |
| 38 | |
| 39 | export default layouts |
| 40 |