|
| 1 | +/** |
| 2 | + * Internal icon paths |
| 3 | + */ |
| 4 | +const icons = { |
| 5 | + star: { |
| 6 | + path: ` |
| 7 | + <path |
| 8 | + fill="currentColor" |
| 9 | + d="M23.555,8.729a1.505,1.505,0,0,0-1.406-.98H16.062a.5.5,0,0,1-.472-.334L13.405,1.222a1.5,1.5,0,0,0-2.81,0l-.005.016L8.41,7.415a.5.5,0,0,1-.471.334H1.85A1.5,1.5,0,0,0,.887,10.4l5.184,4.3a.5.5,0,0,1,.155.543L4.048,21.774a1.5,1.5,0,0,0,2.31,1.684l5.346-3.92a.5.5,0,0,1,.591,0l5.344,3.919a1.5,1.5,0,0,0,2.312-1.683l-2.178-6.535a.5.5,0,0,1,.155-.543l5.194-4.306A1.5,1.5,0,0,0,23.555,8.729Z" |
| 10 | + /> |
| 11 | + ` |
| 12 | + }, |
| 13 | + email: { |
| 14 | + path: ` |
| 15 | + <g fill="currentColor"> |
| 16 | + <path d="M11.114,14.556a1.252,1.252,0,0,0,1.768,0L22.568,4.87a.5.5,0,0,0-.281-.849A1.966,1.966,0,0,0,22,4H2a1.966,1.966,0,0,0-.289.021.5.5,0,0,0-.281.849Z" /> |
| 17 | + <path d="M23.888,5.832a.182.182,0,0,0-.2.039l-6.2,6.2a.251.251,0,0,0,0,.354l5.043,5.043a.75.75,0,1,1-1.06,1.061l-5.043-5.043a.25.25,0,0,0-.354,0l-2.129,2.129a2.75,2.75,0,0,1-3.888,0L7.926,13.488a.251.251,0,0,0-.354,0L2.529,18.531a.75.75,0,0,1-1.06-1.061l5.043-5.043a.251.251,0,0,0,0-.354l-6.2-6.2a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z" /> |
| 18 | + </g> |
| 19 | + ` |
| 20 | + }, |
| 21 | + phone: { |
| 22 | + viewBox: '0 0 14 14', |
| 23 | + path: ` |
| 24 | + <path |
| 25 | + fill="currentColor" |
| 26 | + d="M2.20731,0.0127209 C2.1105,-0.0066419 1.99432,-0.00664663 1.91687,0.032079 C0.871279,0.438698 0.212942,1.92964 0.0580392,2.95587 C-0.426031,6.28627 2.20731,9.17133 4.62766,11.0689 C6.77694,12.7534 10.9012,15.5223 13.3409,12.8503 C13.6507,12.5211 14.0186,12.037 13.9993,11.553 C13.9412,10.7397 13.186,10.1588 12.6051,9.71349 C12.1598,9.38432 11.2304,8.47427 10.6495,8.49363 C10.1267,8.51299 9.79754,9.05515 9.46837,9.38432 L8.88748,9.96521 C8.79067,10.062 7.55145,9.24878 7.41591,9.15197 C6.91248,8.8228 6.4284,8.45491 6.00242,8.04829 C5.57644,7.64167 5.18919,7.19632 4.86002,6.73161 C4.7632,6.59607 3.96933,5.41495 4.04678,5.31813 C4.04678,5.31813 4.72448,4.58234 4.91811,4.2919 C5.32473,3.67229 5.63453,3.18822 5.16982,2.45243 C4.99556,2.18135 4.78257,1.96836 4.55021,1.73601 C4.14359,1.34875 3.73698,0.942131 3.27227,0.612963 C3.02055,0.419335 2.59457,0.0708094 2.20731,0.0127209 Z" |
| 27 | + /> |
| 28 | + ` |
| 29 | + }, |
| 30 | + 'question-outline': { |
| 31 | + viewBox: '0 0 24 24', |
| 32 | + path: ` |
| 33 | + <g stroke="currentColor" strokeWidth="1.5"> |
| 34 | + <path |
| 35 | + strokeLinecap="full" |
| 36 | + fill="none" |
| 37 | + d="M9,9a3,3,0,1,1,4,2.829,1.5,1.5,0,0,0-1,1.415V14.25" |
| 38 | + /> |
| 39 | + <path |
| 40 | + fill="none" |
| 41 | + strokeLinecap="full" |
| 42 | + d="M12,17.25a.375.375,0,1,0,.375.375A.375.375,0,0,0,12,17.25h0" |
| 43 | + /> |
| 44 | + <circle fill="none" strokeMiterlimit="10" cx="12" cy="12" r="11.25" /> |
| 45 | + </g> |
| 46 | + ` |
| 47 | + } |
| 48 | +} |
| 49 | + |
| 50 | +export default icons |
0 commit comments