Files
metabuilder/fakemui/icons/FolderOpen.tsx
2025-12-30 12:37:34 +00:00

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