AdSense.jsx
1 year ago
Checkmark.jsx
1 year ago
Code.jsx
1 year ago
Image.jsx
1 year ago
UpgradeBox.jsx
1 year ago
AdSense.jsx
25 lines
| 1 | export default function AdSense(props) { |
| 2 | return ( |
| 3 | <svg |
| 4 | xmlns="http://www.w3.org/2000/svg" |
| 5 | width={60} |
| 6 | height={60} |
| 7 | overflow="visible" |
| 8 | {...props} |
| 9 | > |
| 10 | <path |
| 11 | fill="#66acc7" |
| 12 | d="M35.861 21.053c2.025-3.465.823-7.894-2.684-9.895s-7.996-.814-10.021 2.652a9.303 9.303 0 0 0-.251.475l-6.845 11.71a8.885 8.885 0 0 0-.421.719L8.531 38.98l12.703 7.12 7.074-12.163a6.89 6.89 0 0 0 .419-.72l6.846-11.712c.1-.145.198-.296.288-.452" |
| 13 | /> |
| 14 | <path |
| 15 | fill="#0074a2" |
| 16 | d="M21.293 46.063c-2.013 3.522-6.555 4.817-10.042 2.786s-4.728-6.443-2.711-9.964 6.516-4.822 10.003-2.791 4.764 6.449 2.75 9.969" |
| 17 | /> |
| 18 | <path |
| 19 | fill="#3390b5" |
| 20 | d="M48.706 23.372a7.263 7.263 0 0 0-9.907 2.648l-7.253 12.53a7.23 7.23 0 0 0 2.636 9.873c.007.003.013.008.019.012a7.265 7.265 0 0 0 9.909-2.648l7.252-12.531a7.226 7.226 0 0 0-2.64-9.873" |
| 21 | /> |
| 22 | </svg> |
| 23 | ); |
| 24 | } |
| 25 |