Dariky commited on
Commit
992fef5
·
verified ·
1 Parent(s): 8c7fe42

Upload components/PrintIcon.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/PrintIcon.jsx +16 -0
components/PrintIcon.jsx ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ const PrintIcon = () => (
2
+ <svg
3
+ className="h-6 w-6"
4
+ fill="none"
5
+ stroke="currentColor"
6
+ viewBox="0 0 24 24"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ strokeLinecap="round"
11
+ strokeLinejoin="round"
12
+ strokeWidth="2"
13
+ d="M17 17h2a2 2 0 002-2v-4a2 2 0 00-2-2H5a2 2 0 00-2 2v4a2 2 0 002 2h2m2 4h6a2 2 0 002-2v-4a2 2 0 00-2-2H9a2 2 0 00-2 2v4a2 2 0 002 2zm8-12V5a2 2 0 00-2-2H9a2 2 0 00-2 2v4h10z"
14
+ />
15
+ </svg>
16
+ );