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

11 lines
324 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const ViewWeek = (props: IconProps) => (
<Icon {...props}>
<rect x="24" y="56" width="56" height="144" rx="4" />
<rect x="100" y="56" width="56" height="144" rx="4" />
<rect x="176" y="56" width="56" height="144" rx="4" />
</Icon>
)