mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const AttachFile = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M120 200V80a40 40 0 0 1 80 0v104a64 64 0 0 1-128 0V72a88 88 0 0 1 176 0v112" fill="none" />
|
|
</Icon>
|
|
)
|