mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
10 lines
448 B
TypeScript
10 lines
448 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const FileCopy = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M168 168 L168 216 C168 224.8 160.8 232 152 232 L56 232 C47.2 232 40 224.8 40 216 L40 88 C40 79.2 47.2 72 56 72 L72 72" />
|
|
<path d="M200 24 L104 24 C95.2 24 88 31.2 88 40 L88 152 C88 160.8 95.2 168 104 168 L200 168 C208.8 168 216 160.8 216 152 L216 40 C216 31.2 208.8 24 200 24 Z" />
|
|
</Icon>
|
|
)
|