mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
11 lines
462 B
TypeScript
11 lines
462 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const CreateNewFolder = (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" />
|
|
<line x1="128" y1="132" x2="128" y2="172" />
|
|
<line x1="108" y1="152" x2="148" y2="152" />
|
|
</Icon>
|
|
)
|