Files
metabuilder/fakemui/icons/AttachFile.tsx
2025-12-30 13:46:46 +00:00

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>
)