Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

PrinterIcon.tsx 547 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  1. // From https://heroicons.com
  2. export const PrinterIcon = () => {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. height={18}
  7. width={18}
  8. fill="none"
  9. viewBox="0 0 24 24"
  10. stroke="currentColor"
  11. >
  12. <path
  13. strokeLinecap="round"
  14. strokeLinejoin="round"
  15. strokeWidth={2}
  16. 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"
  17. />
  18. </svg>
  19. )
  20. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...