mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 00:05:01 +00:00
11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const MapTrifold = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="96 184 32 200 32 56 96 40" />
|
|
<polyline points="160 216 96 184 96 40 160 72 160 216" />
|
|
<polyline points="160 72 224 56 224 200 160 216" />
|
|
</Icon>
|
|
)
|