mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Screen = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="32" y="48" width="192" height="144" rx="16" />
|
|
<line x1="96" y1="224" x2="160" y2="224" />
|
|
<line x1="128" y1="192" x2="128" y2="224" />
|
|
</Icon>
|
|
)
|