mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Image = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="32" y="48" width="192" height="160" rx="8" />
|
|
<circle cx="96" cy="112" r="24" />
|
|
<path d="m32 168 72-56 48 48 48-48 24 24" />
|
|
</Icon>
|
|
)
|