| 1 |
export const blockIcon = () => ( |
| 2 |
<svg |
| 3 |
xmlns="http://www.w3.org/2000/svg" |
| 4 |
style={{ width: 24, height: 24 }} |
| 5 |
fill="none" |
| 6 |
viewBox="0 0 24 24" |
| 7 |
stroke="#1e1e1e" |
| 8 |
strokeWidth="2"> |
| 9 |
<path |
| 10 |
fill="none" |
| 11 |
strokeLinecap="round" |
| 12 |
strokeLinejoin="round" |
| 13 |
d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" |
| 14 |
/> |
| 15 |
</svg> |
| 16 |
); |
| 17 |
export const languageIcon = () => ( |
| 18 |
<svg |
| 19 |
xmlns="http://www.w3.org/2000/svg" |
| 20 |
style={{ width: 24, height: 24 }} |
| 21 |
fill="none" |
| 22 |
viewBox="0 0 24 24" |
| 23 |
stroke="#1e1e1e" |
| 24 |
strokeWidth={1.5}> |
| 25 |
<path |
| 26 |
fill="none" |
| 27 |
strokeLinecap="round" |
| 28 |
strokeLinejoin="round" |
| 29 |
d="M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5" |
| 30 |
/> |
| 31 |
</svg> |
| 32 |
); |
| 33 |
export const HeadlightsIcon = () => ( |
| 34 |
<svg |
| 35 |
xmlns="http://www.w3.org/2000/svg" |
| 36 |
width={54} |
| 37 |
height={14} |
| 38 |
viewBox="0 0 54 14"> |
| 39 |
<g fill="none" fillRule="evenodd" transform="translate(1 1)"> |
| 40 |
<circle |
| 41 |
cx="6" |
| 42 |
cy="6" |
| 43 |
r="6" |
| 44 |
fill="#FF5F56" |
| 45 |
stroke="#E0443E" |
| 46 |
strokeWidth=".5"></circle> |
| 47 |
<circle |
| 48 |
cx="26" |
| 49 |
cy="6" |
| 50 |
r="6" |
| 51 |
fill="#FFBD2E" |
| 52 |
stroke="#DEA123" |
| 53 |
strokeWidth=".5"></circle> |
| 54 |
<circle |
| 55 |
cx="46" |
| 56 |
cy="6" |
| 57 |
r="6" |
| 58 |
fill="#27C93F" |
| 59 |
stroke="#1AAB29" |
| 60 |
strokeWidth=".5"></circle> |
| 61 |
</g> |
| 62 |
</svg> |
| 63 |
); |
| 64 |
|