| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- interface PlateClearedIconProps {
- className?: string;
- }
- export function PlateClearedIcon({ className = "w-4 h-4" }: PlateClearedIconProps) {
- return (
- <svg
- viewBox="0 0 1945 1370"
- fill="none"
- className={className}
- aria-hidden="true"
- >
- <g transform="translate(-754.293 -471.685)">
- <g transform="translate(0.18191 255.976)">
- <g transform="matrix(1.05469 0 0 0.241063 -153.484 1120.2)">
- <rect
- x="922.048"
- y="1195.15"
- width="1721.5"
- height="470.135"
- stroke="currentColor"
- strokeOpacity="0.99"
- strokeWidth="168.84"
- strokeLinecap="round"
- strokeLinejoin="round"
- />
- </g>
- <g transform="matrix(0.983656 0 0 1.0767 -62.2035 141.539)">
- <path
- d="M2741.42,1175.93L895.832,1175.93L1125.16,621.902L2512.09,621.902L2741.42,1175.93Z"
- fill="currentColor"
- fillOpacity="0.05"
- stroke="currentColor"
- strokeOpacity="0.99"
- strokeWidth="125.26"
- strokeLinecap="round"
- strokeLinejoin="round"
- />
- </g>
- </g>
- <g transform="translate(21.1916 0.684817)">
- <path
- 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"
- fill="currentColor"
- fillOpacity="0.99"
- />
- </g>
- </g>
- </svg>
- );
- }
|