Files
metabuilder/fakemui/icons/ViewModule.tsx
2025-12-30 14:10:52 +00:00

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>
)