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