mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Tenant = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M3 21h18" />
|
|
<path d="M5 21V7l7-4 7 4v14" />
|
|
<path d="M9 21v-4h6v4" />
|
|
<path d="M9 9h1" />
|
|
<path d="M14 9h1" />
|
|
<path d="M9 13h1" />
|
|
<path d="M14 13h1" />
|
|
</Icon>
|
|
)
|