mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
325 B
TypeScript
10 lines
325 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Folder = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M216 72h-84.7l-26.6-20c-3.6-2.7-8-4-12.5-4H40a8 8 0 0 0-8 8v144a8 8 0 0 0 8 8h176a8 8 0 0 0 8-8V80a8 8 0 0 0-8-8Z" />
|
|
<line x1="32" y1="104" x2="224" y2="104" />
|
|
</Icon>
|
|
)
|