mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
code: tsx,icons,fakemui (9 files)
This commit is contained in:
9
fakemui/icons/Analytics.tsx
Normal file
9
fakemui/icons/Analytics.tsx
Normal 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>
|
||||
)
|
||||
10
fakemui/icons/BarChart.tsx
Normal file
10
fakemui/icons/BarChart.tsx
Normal 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>
|
||||
)
|
||||
8
fakemui/icons/CheckBoxOutlineBlank.tsx
Normal file
8
fakemui/icons/CheckBoxOutlineBlank.tsx
Normal 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>
|
||||
)
|
||||
9
fakemui/icons/IndeterminateCheckBox.tsx
Normal file
9
fakemui/icons/IndeterminateCheckBox.tsx
Normal 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>
|
||||
)
|
||||
10
fakemui/icons/PieChart.tsx
Normal file
10
fakemui/icons/PieChart.tsx
Normal 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>
|
||||
)
|
||||
9
fakemui/icons/RadioButtonChecked.tsx
Normal file
9
fakemui/icons/RadioButtonChecked.tsx
Normal 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>
|
||||
)
|
||||
8
fakemui/icons/RadioButtonUnchecked.tsx
Normal file
8
fakemui/icons/RadioButtonUnchecked.tsx
Normal 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>
|
||||
)
|
||||
8
fakemui/icons/ShowChart.tsx
Normal file
8
fakemui/icons/ShowChart.tsx
Normal 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>
|
||||
)
|
||||
13
fakemui/icons/Timeline.tsx
Normal file
13
fakemui/icons/Timeline.tsx
Normal 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>
|
||||
)
|
||||
Reference in New Issue
Block a user