@@ -244,3 +244,31 @@ export const EnterKeyIcon = (props: preact.JSX.HTMLAttributes) => (
244
244
< path d = "M19,6a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H7.41l1.3-1.29A1,1,0,0,0,7.29,9.29l-3,3a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L7.41,14H17a3,3,0,0,0,3-3V7A1,1,0,0,0,19,6Z" />
245
245
</ svg >
246
246
) ;
247
+
248
+ export const ShareIcon = ( props : preact . JSX . HTMLAttributes ) => (
249
+ // @ts -ignore - HTML attributes are valid for SVG
250
+ < svg
251
+ width = "800px"
252
+ height = "800px"
253
+ viewBox = "0 0 24 24"
254
+ fill = "currentColor"
255
+ xmlns = "http://www.w3.org/2000/svg"
256
+ { ...props }
257
+ >
258
+ < path d = "M18,14a4,4,0,0,0-3.08,1.48l-5.1-2.35a3.64,3.64,0,0,0,0-2.26l5.1-2.35A4,4,0,1,0,14,6a4.17,4.17,0,0,0,.07.71L8.79,9.14a4,4,0,1,0,0,5.72l5.28,2.43A4.17,4.17,0,0,0,14,18a4,4,0,1,0,4-4ZM18,4a2,2,0,1,1-2,2A2,2,0,0,1,18,4ZM6,14a2,2,0,1,1,2-2A2,2,0,0,1,6,14Zm12,6a2,2,0,1,1,2-2A2,2,0,0,1,18,20Z" />
259
+ </ svg >
260
+ ) ;
261
+
262
+ export const CopyIcon = ( props : preact . JSX . HTMLAttributes ) => (
263
+ // @ts -ignore - HTML attributes are valid for SVG
264
+ < svg
265
+ width = "800px"
266
+ height = "800px"
267
+ viewBox = "0 0 24 24"
268
+ fill = "currentColor"
269
+ xmlns = "http://www.w3.org/2000/svg"
270
+ { ...props }
271
+ >
272
+ < path d = "M21,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,14.05,2H10A3,3,0,0,0,7,5V6H6A3,3,0,0,0,3,9V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V18h1a3,3,0,0,0,3-3V9S21,9,21,8.94ZM15,5.41,17.59,8H16a1,1,0,0,1-1-1ZM15,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V9A1,1,0,0,1,6,8H7v7a3,3,0,0,0,3,3h5Zm4-4a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h3V7a3,3,0,0,0,3,3h3Z" />
273
+ </ svg >
274
+ ) ;
0 commit comments