mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const FolderOpen = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M224 88v112a16 16 0 0 1-16 16H48a16 16 0 0 1-16-16V64a16 16 0 0 1 16-16h56l24 24h80a16 16 0 0 1 16 16Z" fill="none" />
|
|
<line x1="32" y1="120" x2="224" y2="120" />
|
|
</Icon>
|
|
)
|