2
0

SidebarDrawerIcon.jsx 1.2 KB

1234567891011121314151617181920212223242526272829
  1. import React from 'react';
  2. const SidebarDrawerIcon = () => (
  3. <svg
  4. xmlns="http://www.w3.org/2000/svg"
  5. width="18"
  6. height="18"
  7. viewBox="0 0 23 23"
  8. >
  9. <rect width="23" height="23" fillOpacity="0" />
  10. <g className="sidebar-drawer-icon">
  11. <path d="M20.9,3.9c0.3,0,0.6,0.3,0.6,0.6v13.9c0,0.3-0.3,0.6-0.6,0.6H2.1c-0.3,0-0.6-0.3-0.6-0.6V4.5c0-0.3,0.3-0.6,0.6-0.6H20.9
  12. M20.9,2.4H2.1C1,2.4,0,3.4,0,4.5c0,0,0,0,0,0v13.9c0,1.2,1,2.1,2.1,2.1c0,0,0,0,0,0h18.7c1.2,0,2.1-0.9,2.1-2.1c0,0,0,0,0,0V4.5
  13. C23,3.4,22,2.4,20.9,2.4C20.9,2.4,20.9,2.4,20.9,2.4z"
  14. />
  15. <rect x="7.5" y="3.9" width="1.2" height="0.8" />
  16. <rect x="7.5" y="15.3" width="1.2" height="1.5" />
  17. <rect x="7.5" y="12.3" width="1.2" height="1.5" />
  18. <rect x="7.5" y="9.2" width="1.2" height="1.6" />
  19. <rect x="7.5" y="6.1" width="1.2" height="1.6" />
  20. <rect x="7.5" y="18.4" width="1.2" height="0.8" />
  21. <path d="M15.1,14.9c-0.2,0-0.3-0.1-0.4-0.2l-2.8-2.8c-0.2-0.2-0.2-0.6,0-0.8l2.8-2.8c0.2-0.2,0.6-0.2,0.9,0s0.2,0.6,0,0.9l-2.4,2.4
  22. l2.4,2.4c0.2,0.2,0.2,0.6,0,0.9C15.4,14.8,15.3,14.9,15.1,14.9z"
  23. />
  24. </g>
  25. </svg>
  26. );
  27. export default SidebarDrawerIcon;