mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
12 lines
386 B
TypeScript
12 lines
386 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const FileArrowDown = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M200 224H56a8 8 0 0 1-8-8V40a8 8 0 0 1 8-8h96l56 56v128a8 8 0 0 1-8 8Z" />
|
|
<polyline points="152 32 152 88 208 88" />
|
|
<line x1="128" y1="136" x2="128" y2="200" />
|
|
<polyline points="96 168 128 200 160 168" />
|
|
</Icon>
|
|
)
|