mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ViewCarousel = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="64" y="48" width="128" height="160" rx="8" />
|
|
<rect x="16" y="80" width="32" height="96" rx="4" />
|
|
<rect x="208" y="80" width="32" height="96" rx="4" />
|
|
</Icon>
|
|
)
|