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