From 78f8b74de978cf747d783b294e8995fbe3a420a5 Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 14:11:52 +0000 Subject: [PATCH] code: tsx,icons,fakemui (9 files) --- fakemui/icons/Analytics.tsx | 9 +++++++++ fakemui/icons/BarChart.tsx | 10 ++++++++++ fakemui/icons/CheckBoxOutlineBlank.tsx | 8 ++++++++ fakemui/icons/IndeterminateCheckBox.tsx | 9 +++++++++ fakemui/icons/PieChart.tsx | 10 ++++++++++ fakemui/icons/RadioButtonChecked.tsx | 9 +++++++++ fakemui/icons/RadioButtonUnchecked.tsx | 8 ++++++++ fakemui/icons/ShowChart.tsx | 8 ++++++++ fakemui/icons/Timeline.tsx | 13 +++++++++++++ 9 files changed, 84 insertions(+) create mode 100644 fakemui/icons/Analytics.tsx create mode 100644 fakemui/icons/BarChart.tsx create mode 100644 fakemui/icons/CheckBoxOutlineBlank.tsx create mode 100644 fakemui/icons/IndeterminateCheckBox.tsx create mode 100644 fakemui/icons/PieChart.tsx create mode 100644 fakemui/icons/RadioButtonChecked.tsx create mode 100644 fakemui/icons/RadioButtonUnchecked.tsx create mode 100644 fakemui/icons/ShowChart.tsx create mode 100644 fakemui/icons/Timeline.tsx diff --git a/fakemui/icons/Analytics.tsx b/fakemui/icons/Analytics.tsx new file mode 100644 index 000000000..19c8dcbd0 --- /dev/null +++ b/fakemui/icons/Analytics.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Analytics = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/BarChart.tsx b/fakemui/icons/BarChart.tsx new file mode 100644 index 000000000..56ebf7198 --- /dev/null +++ b/fakemui/icons/BarChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const BarChart = (props: IconProps) => ( + + + + + +) diff --git a/fakemui/icons/CheckBoxOutlineBlank.tsx b/fakemui/icons/CheckBoxOutlineBlank.tsx new file mode 100644 index 000000000..f7da2a141 --- /dev/null +++ b/fakemui/icons/CheckBoxOutlineBlank.tsx @@ -0,0 +1,8 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const CheckBoxOutlineBlank = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/IndeterminateCheckBox.tsx b/fakemui/icons/IndeterminateCheckBox.tsx new file mode 100644 index 000000000..ddcba0145 --- /dev/null +++ b/fakemui/icons/IndeterminateCheckBox.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const IndeterminateCheckBox = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/PieChart.tsx b/fakemui/icons/PieChart.tsx new file mode 100644 index 000000000..2cd2c473e --- /dev/null +++ b/fakemui/icons/PieChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const PieChart = (props: IconProps) => ( + + + + + +) diff --git a/fakemui/icons/RadioButtonChecked.tsx b/fakemui/icons/RadioButtonChecked.tsx new file mode 100644 index 000000000..2b8fd3785 --- /dev/null +++ b/fakemui/icons/RadioButtonChecked.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const RadioButtonChecked = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/RadioButtonUnchecked.tsx b/fakemui/icons/RadioButtonUnchecked.tsx new file mode 100644 index 000000000..aab29fe8c --- /dev/null +++ b/fakemui/icons/RadioButtonUnchecked.tsx @@ -0,0 +1,8 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const RadioButtonUnchecked = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/ShowChart.tsx b/fakemui/icons/ShowChart.tsx new file mode 100644 index 000000000..b88c6c2a1 --- /dev/null +++ b/fakemui/icons/ShowChart.tsx @@ -0,0 +1,8 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const ShowChart = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/Timeline.tsx b/fakemui/icons/Timeline.tsx new file mode 100644 index 000000000..49f46697c --- /dev/null +++ b/fakemui/icons/Timeline.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Timeline = (props: IconProps) => ( + + + + + + + + +)