mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-28 15:54:56 +00:00
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const FullscreenExit = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="96,40 96,96 40,96" />
|
|
<polyline points="216,96 160,96 160,40" />
|
|
<polyline points="160,216 160,160 216,160" />
|
|
<polyline points="40,160 96,160 96,216" />
|
|
</Icon>
|
|
)
|