Files
metabuilder/fakemui/icons/ViewDay.tsx
2025-12-30 14:14:52 +00:00

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>
)