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
Code.jsx
15 lines
| 1 | export default function Code(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="M19.632 37.137c-.301 0-.606-.077-.889-.241l-9.279-5.351A1.79 1.79 0 0 1 8.572 30c0-.638.342-1.226.893-1.545l9.279-5.355a1.784 1.784 0 0 1 2.438.656 1.78 1.78 0 0 1-.652 2.434L13.926 30l6.604 3.806a1.787 1.787 0 0 1 .652 2.438 1.78 1.78 0 0 1-1.55.893zm20.731 0a1.776 1.776 0 0 1-1.545-.894 1.78 1.78 0 0 1 .651-2.438l6.6-3.806-6.6-3.81a1.774 1.774 0 0 1-.651-2.434 1.783 1.783 0 0 1 2.438-.656l9.278 5.355c.552.319.894.907.894 1.545s-.342 1.226-.894 1.545l-9.278 5.351a1.754 1.754 0 0 1-.893.242zm-15.276 3.144a1.82 1.82 0 0 1-.894-.237 1.786 1.786 0 0 1-.651-2.438l9.821-16.995a1.784 1.784 0 0 1 2.438-.656 1.79 1.79 0 0 1 .656 2.438l-9.821 16.994a1.78 1.78 0 0 1-1.549.894z" /> |
| 12 | </svg> |
| 13 | ); |
| 14 | } |
| 15 |