mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
317 B
TypeScript
11 lines
317 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Archive = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="24" y="56" width="208" height="40" rx="8" />
|
|
<path d="M40 96v112a8 8 0 0 0 8 8h160a8 8 0 0 0 8-8V96" />
|
|
<line x1="104" y1="136" x2="152" y2="136" />
|
|
</Icon>
|
|
)
|