mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
code: tsx,icons,fakemui (4 files)
This commit is contained in:
11
fakemui/icons/ArrowUpDown.tsx
Normal file
11
fakemui/icons/ArrowUpDown.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from 'react'
|
||||
import { Icon, IconProps } from './Icon'
|
||||
|
||||
export const ArrowUpDown = (props: IconProps) => (
|
||||
<Icon {...props}>
|
||||
<polyline points="88,96 128,56 168,96" />
|
||||
<line x1="128" y1="56" x2="128" y2="136" />
|
||||
<polyline points="88,160 128,200 168,160" />
|
||||
<line x1="128" y1="200" x2="128" y2="120" />
|
||||
</Icon>
|
||||
)
|
||||
11
fakemui/icons/Fullscreen.tsx
Normal file
11
fakemui/icons/Fullscreen.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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>
|
||||
)
|
||||
11
fakemui/icons/FullscreenExit.tsx
Normal file
11
fakemui/icons/FullscreenExit.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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>
|
||||
)
|
||||
11
fakemui/icons/People.tsx
Normal file
11
fakemui/icons/People.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from 'react'
|
||||
import { Icon, IconProps } from './Icon'
|
||||
|
||||
export const People = (props: IconProps) => (
|
||||
<Icon {...props}>
|
||||
<circle cx="88" cy="80" r="32" />
|
||||
<path d="M32 192 C32 144 56 120 88 120 C120 120 144 144 144 192" />
|
||||
<circle cx="168" cy="80" r="32" />
|
||||
<path d="M144 192 C144 152 160 128 168 128 C200 128 224 152 224 192" />
|
||||
</Icon>
|
||||
)
|
||||
Reference in New Issue
Block a user