mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Upload = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<line x1="128" y1="168" x2="128" y2="24" />
|
|
<polyline points="176 72 128 24 80 72" />
|
|
<path d="M216 168v40a8 8 0 0 1-8 8H48a8 8 0 0 1-8-8v-40" />
|
|
</Icon>
|
|
)
|