PlateClearedIcon.tsx 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. interface PlateClearedIconProps {
  2. className?: string;
  3. }
  4. export function PlateClearedIcon({ className = "w-4 h-4" }: PlateClearedIconProps) {
  5. return (
  6. <svg
  7. viewBox="0 0 1945 1370"
  8. fill="none"
  9. className={className}
  10. aria-hidden="true"
  11. >
  12. <g transform="translate(-754.293 -471.685)">
  13. <g transform="translate(0.18191 255.976)">
  14. <g transform="matrix(1.05469 0 0 0.241063 -153.484 1120.2)">
  15. <rect
  16. x="922.048"
  17. y="1195.15"
  18. width="1721.5"
  19. height="470.135"
  20. stroke="currentColor"
  21. strokeOpacity="0.99"
  22. strokeWidth="168.84"
  23. strokeLinecap="round"
  24. strokeLinejoin="round"
  25. />
  26. </g>
  27. <g transform="matrix(0.983656 0 0 1.0767 -62.2035 141.539)">
  28. <path
  29. d="M2741.42,1175.93L895.832,1175.93L1125.16,621.902L2512.09,621.902L2741.42,1175.93Z"
  30. fill="currentColor"
  31. fillOpacity="0.05"
  32. stroke="currentColor"
  33. strokeOpacity="0.99"
  34. strokeWidth="125.26"
  35. strokeLinecap="round"
  36. strokeLinejoin="round"
  37. />
  38. </g>
  39. </g>
  40. <g transform="translate(21.1916 0.684817)">
  41. <path
  42. d="M1981.31,567.518C1954.86,567.518 1933.39,546.047 1933.39,519.601C1933.39,493.156 1954.86,471.685 1981.31,471.685L2146.61,471.685C2173.07,471.685 2194.53,493.138 2194.53,519.601L2194.53,688.741C2194.53,715.187 2173.05,736.658 2146.61,736.658C2120.16,736.658 2098.69,715.187 2098.69,688.741L2098.69,567.518L1981.31,567.518ZM2098.69,1252.54C2098.69,1226.1 2120.16,1204.62 2146.61,1204.62C2173.05,1204.62 2194.53,1226.1 2194.53,1252.54L2194.53,1421.68C2194.53,1448.14 2173.07,1469.6 2146.61,1469.6L1981.31,1469.6C1954.86,1469.6 1933.39,1448.13 1933.39,1421.68C1933.39,1395.24 1954.86,1373.76 1981.31,1373.76L2098.69,1373.76L2098.69,1252.54ZM1430.29,1373.76C1456.74,1373.76 1478.21,1395.24 1478.21,1421.68C1478.21,1448.13 1456.74,1469.6 1430.29,1469.6L1264.99,1469.6C1238.53,1469.6 1217.07,1448.14 1217.07,1421.68L1217.07,1252.54C1217.07,1226.1 1238.55,1204.62 1264.99,1204.62C1291.44,1204.62 1312.91,1226.1 1312.91,1252.54L1312.91,1373.76L1430.29,1373.76ZM1312.91,688.741C1312.91,715.187 1291.44,736.658 1264.99,736.658C1238.55,736.658 1217.07,715.187 1217.07,688.741L1217.07,519.601C1217.07,493.138 1238.53,471.685 1264.99,471.685L1430.29,471.685C1456.74,471.685 1478.21,493.156 1478.21,519.601C1478.21,546.047 1456.74,567.518 1430.29,567.518L1312.91,567.518L1312.91,688.741Z"
  43. fill="currentColor"
  44. fillOpacity="0.99"
  45. />
  46. </g>
  47. </g>
  48. </svg>
  49. );
  50. }