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