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
Image.jsx
16 lines
| 1 | export default function Image(props) { |
| 2 | return ( |
| 3 | <svg |
| 4 | xmlns="http://www.w3.org/2000/svg" |
| 5 | width={60} |
| 6 | height={60} |
| 7 | fill="#0074a2" |
| 8 | overflow="visible" |
| 9 | {...props} |
| 10 | > |
| 11 | <path d="M25.706 33.212a3.68 3.68 0 0 1-3.192 1.842 3.683 3.683 0 0 1-3.192-1.841l-1.073-1.863a3.69 3.69 0 0 0-3.195-1.843 3.68 3.68 0 0 0-3.192 1.843l-3.774 6.536a3.682 3.682 0 0 0 .002 3.687 3.68 3.68 0 0 0 3.192 1.843H48.67a3.686 3.686 0 0 0 3.192-1.843 3.69 3.69 0 0 0 .001-3.687L40.625 18.427a3.68 3.68 0 0 0-3.191-1.842 3.685 3.685 0 0 0-3.193 1.842l-8.535 14.785z" /> |
| 12 | <circle cx={15.055} cy={20.273} r={3.686} /> |
| 13 | </svg> |
| 14 | ); |
| 15 | } |
| 16 |