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

12 lines
376 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Apps = (props: IconProps) => (
<Icon {...props}>
<rect x="40" y="40" width="56" height="56" rx="8" />
<rect x="40" y="140" width="56" height="56" rx="8" />
<rect x="140" y="40" width="56" height="56" rx="8" />
<rect x="140" y="140" width="56" height="56" rx="8" />
</Icon>
)