Files
metabuilder/icons/react/fakemui/Tablet.tsx
2026-03-09 22:30:41 +00:00

10 lines
257 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Tablet = (props: IconProps) => (
<Icon {...props}>
<rect x="40" y="32" width="176" height="192" rx="16" fill="none" />
<circle cx="128" cy="192" r="8" />
</Icon>
)