mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ViewDay = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<line x1="32" y1="56" x2="224" y2="56" />
|
|
<rect x="32" y="96" width="192" height="64" rx="8" />
|
|
<line x1="32" y1="200" x2="224" y2="200" />
|
|
</Icon>
|
|
)
|