mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
12 lines
376 B
TypeScript
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>
|
|
)
|