Files
metabuilder/icons/react/fakemui/FolderShared.tsx
2026-03-09 22:30:41 +00:00

11 lines
479 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const FolderShared = (props: IconProps) => (
<Icon {...props}>
<path d="M216 72 L216 200 C216 213.3 205.3 224 192 224 L32 224 C18.7 224 8 213.3 8 200 L8 56 C8 42.7 18.7 32 32 32 L93.3 32 L130.7 69.3 C134.9 73.5 140.6 76 146.7 76 L192 76 C205.3 76 216 86.7 216 100" />
<circle cx="128" cy="136" r="20" />
<path d="M96 192 C96 176 108.5 164 128 164 C147.5 164 160 176 160 192" />
</Icon>
)