Files
metabuilder/icons/react/fakemui/Grid.tsx
2026-03-09 22:30:41 +00:00

12 lines
376 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Grid = (props: IconProps) => (
<Icon {...props}>
<rect x="32" y="32" width="80" height="80" rx="8" />
<rect x="144" y="32" width="80" height="80" rx="8" />
<rect x="32" y="144" width="80" height="80" rx="8" />
<rect x="144" y="144" width="80" height="80" rx="8" />
</Icon>
)