mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
11 lines
324 B
TypeScript
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>
|
|
)
|