mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
14 lines
499 B
TypeScript
14 lines
499 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ViewModule = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="32" y="64" width="56" height="56" rx="4" />
|
|
<rect x="100" y="64" width="56" height="56" rx="4" />
|
|
<rect x="168" y="64" width="56" height="56" rx="4" />
|
|
<rect x="32" y="136" width="56" height="56" rx="4" />
|
|
<rect x="100" y="136" width="56" height="56" rx="4" />
|
|
<rect x="168" y="136" width="56" height="56" rx="4" />
|
|
</Icon>
|
|
)
|