code: tsx,icons,fakemui (9 files)

This commit is contained in:
Richard Ward
2025-12-30 14:11:52 +00:00
parent b20432cdfc
commit 78f8b74de9
9 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const Analytics = (props: IconProps) => (
<Icon {...props}>
<polyline points="40 176 72 128 104 152 136 96 168 120 200 64 224 40" />
<rect x="32" y="32" width="192" height="192" rx="8" />
</Icon>
)

View File

@@ -0,0 +1,10 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const BarChart = (props: IconProps) => (
<Icon {...props}>
<rect x="48" y="144" width="40" height="80" />
<rect x="108" y="96" width="40" height="128" />
<rect x="168" y="48" width="40" height="176" />
</Icon>
)

View File

@@ -0,0 +1,8 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const CheckBoxOutlineBlank = (props: IconProps) => (
<Icon {...props}>
<rect x="40" y="40" width="176" height="176" rx="8" />
</Icon>
)

View File

@@ -0,0 +1,9 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const IndeterminateCheckBox = (props: IconProps) => (
<Icon {...props}>
<rect x="40" y="40" width="176" height="176" rx="8" />
<line x1="88" y1="128" x2="168" y2="128" />
</Icon>
)

View File

@@ -0,0 +1,10 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const PieChart = (props: IconProps) => (
<Icon {...props}>
<circle cx="128" cy="128" r="88" />
<path d="M128 40 L128 128 L216 128" />
<path d="M128 128 L176 60" />
</Icon>
)

View File

@@ -0,0 +1,9 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const RadioButtonChecked = (props: IconProps) => (
<Icon {...props}>
<circle cx="128" cy="128" r="88" />
<circle cx="128" cy="128" r="48" fill="currentColor" stroke="none" />
</Icon>
)

View File

@@ -0,0 +1,8 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const RadioButtonUnchecked = (props: IconProps) => (
<Icon {...props}>
<circle cx="128" cy="128" r="88" />
</Icon>
)

View File

@@ -0,0 +1,8 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const ShowChart = (props: IconProps) => (
<Icon {...props}>
<polyline points="40 192 88 144 136 176 184 96 224 64" />
</Icon>
)

View File

@@ -0,0 +1,13 @@
import React from 'react'
import { Icon, IconProps } from './Icon'
export const Timeline = (props: IconProps) => (
<Icon {...props}>
<polyline points="40 192 88 144 136 176 184 96 224 64" strokeWidth="3" />
<circle cx="40" cy="192" r="8" fill="currentColor" stroke="none" />
<circle cx="88" cy="144" r="8" fill="currentColor" stroke="none" />
<circle cx="136" cy="176" r="8" fill="currentColor" stroke="none" />
<circle cx="184" cy="96" r="8" fill="currentColor" stroke="none" />
<circle cx="224" cy="64" r="8" fill="currentColor" stroke="none" />
</Icon>
)