code: tsx,icons,fakemui (4 files)

This commit is contained in:
Richard Ward
2025-12-30 12:57:37 +00:00
parent 68182ce799
commit ecec7cacc4
4 changed files with 44 additions and 0 deletions

View 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>
)

View 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>
)

View 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
View 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>
)