IconGrid.tsx 1.4 KB

123456789101112131415161718192021222324252627282930
  1. import * as React from 'react';
  2. import { convertIcon } from '../components/Icon';
  3. function SvgComponent(props: React.SVGProps<SVGSVGElement>) {
  4. return (
  5. <svg
  6. viewBox="0 0 24 24"
  7. fill="none"
  8. xmlns="http://www.w3.org/2000/svg"
  9. width="1em"
  10. height="1em"
  11. focusable={false}
  12. aria-hidden={true}
  13. {...props}
  14. >
  15. <path fillRule="evenodd" clipRule="evenodd" d="M22 2H2V22H22V2ZM20 4H4V20H20V4Z" fill="#6A6F7F" />
  16. <path fillRule="evenodd" clipRule="evenodd" d="M22 9H20V15H22V9ZM2 15H4V9H2V15Z" fill="#DDE3E8" />
  17. <path fillRule="evenodd" clipRule="evenodd" d="M15 22V20H9V22H15ZM9 2V4H15V2H9Z" fill="#DDE3E8" />
  18. <rect x={7} y={7} width={3} height={3} fill="#6A6F7F" />
  19. <rect x={7} y={10} width={3} height={4} fill="#DDE3E8" />
  20. <rect x={14} y={10} width={3} height={4} fill="#DDE3E8" />
  21. <rect x={10} y={7} width={4} height={3} fill="#DDE3E8" />
  22. <rect x={10} y={14} width={4} height={3} fill="#DDE3E8" />
  23. <rect x={14} y={7} width={3} height={3} fill="#6A6F7F" />
  24. <rect x={7} y={14} width={3} height={3} fill="#6A6F7F" />
  25. <rect x={14} y={14} width={3} height={3} fill="#6A6F7F" />
  26. </svg>
  27. );
  28. }
  29. const IconComponent = convertIcon(SvgComponent, 'grid');
  30. export default IconComponent;