From d344223d95b669d4b9b1939078ec872292aeda2b Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 14:51:25 +0000 Subject: [PATCH] code: tsx,icons,fakemui (8 files) --- fakemui/icons/FormatAlignCenter.tsx | 14 ++++++++++++++ fakemui/icons/FormatAlignJustify.tsx | 14 ++++++++++++++ fakemui/icons/FormatAlignRight.tsx | 14 ++++++++++++++ fakemui/icons/Forum.tsx | 14 ++++++++++++++ fakemui/icons/HourglassEmpty.tsx | 14 ++++++++++++++ fakemui/icons/HourglassFull.tsx | 14 ++++++++++++++ fakemui/icons/Subscript.tsx | 14 ++++++++++++++ fakemui/icons/Superscript.tsx | 14 ++++++++++++++ 8 files changed, 112 insertions(+) create mode 100644 fakemui/icons/FormatAlignCenter.tsx create mode 100644 fakemui/icons/FormatAlignJustify.tsx create mode 100644 fakemui/icons/FormatAlignRight.tsx create mode 100644 fakemui/icons/Forum.tsx create mode 100644 fakemui/icons/HourglassEmpty.tsx create mode 100644 fakemui/icons/HourglassFull.tsx create mode 100644 fakemui/icons/Subscript.tsx create mode 100644 fakemui/icons/Superscript.tsx diff --git a/fakemui/icons/FormatAlignCenter.tsx b/fakemui/icons/FormatAlignCenter.tsx new file mode 100644 index 000000000..5383136cb --- /dev/null +++ b/fakemui/icons/FormatAlignCenter.tsx @@ -0,0 +1,14 @@ +import { type IconProps, Icon } from './Icon' + +/** + * FormatAlignCenter icon - Text alignment center + */ +export function FormatAlignCenter(props: IconProps) { + return ( + + + + ) +} + +export default FormatAlignCenter diff --git a/fakemui/icons/FormatAlignJustify.tsx b/fakemui/icons/FormatAlignJustify.tsx new file mode 100644 index 000000000..7b3efb100 --- /dev/null +++ b/fakemui/icons/FormatAlignJustify.tsx @@ -0,0 +1,14 @@ +import { type IconProps, Icon } from './Icon' + +/** + * FormatAlignJustify icon - Text alignment justify + */ +export function FormatAlignJustify(props: IconProps) { + return ( + + + + ) +} + +export default FormatAlignJustify diff --git a/fakemui/icons/FormatAlignRight.tsx b/fakemui/icons/FormatAlignRight.tsx new file mode 100644 index 000000000..82cf3577d --- /dev/null +++ b/fakemui/icons/FormatAlignRight.tsx @@ -0,0 +1,14 @@ +import { type IconProps, Icon } from './Icon' + +/** + * FormatAlignRight icon - Text alignment right + */ +export function FormatAlignRight(props: IconProps) { + return ( + + + + ) +} + +export default FormatAlignRight diff --git a/fakemui/icons/Forum.tsx b/fakemui/icons/Forum.tsx new file mode 100644 index 000000000..1d2051ef5 --- /dev/null +++ b/fakemui/icons/Forum.tsx @@ -0,0 +1,14 @@ +import { type IconProps, Icon } from './Icon' + +/** + * Forum icon - Discussion forum / community + */ +export function Forum(props: IconProps) { + return ( + + + + ) +} + +export default Forum diff --git a/fakemui/icons/HourglassEmpty.tsx b/fakemui/icons/HourglassEmpty.tsx new file mode 100644 index 000000000..6f51f0155 --- /dev/null +++ b/fakemui/icons/HourglassEmpty.tsx @@ -0,0 +1,14 @@ +import { type IconProps, Icon } from './Icon' + +/** + * HourglassEmpty icon - Empty hourglass / waiting + */ +export function HourglassEmpty(props: IconProps) { + return ( + + + + ) +} + +export default HourglassEmpty diff --git a/fakemui/icons/HourglassFull.tsx b/fakemui/icons/HourglassFull.tsx new file mode 100644 index 000000000..9e7eca9b0 --- /dev/null +++ b/fakemui/icons/HourglassFull.tsx @@ -0,0 +1,14 @@ +import { type IconProps, Icon } from './Icon' + +/** + * HourglassFull icon - Full hourglass + */ +export function HourglassFull(props: IconProps) { + return ( + + + + ) +} + +export default HourglassFull diff --git a/fakemui/icons/Subscript.tsx b/fakemui/icons/Subscript.tsx new file mode 100644 index 000000000..580f0285d --- /dev/null +++ b/fakemui/icons/Subscript.tsx @@ -0,0 +1,14 @@ +import { type IconProps, Icon } from './Icon' + +/** + * Subscript icon - Subscript text formatting + */ +export function Subscript(props: IconProps) { + return ( + + + + ) +} + +export default Subscript diff --git a/fakemui/icons/Superscript.tsx b/fakemui/icons/Superscript.tsx new file mode 100644 index 000000000..993ced47b --- /dev/null +++ b/fakemui/icons/Superscript.tsx @@ -0,0 +1,14 @@ +import { type IconProps, Icon } from './Icon' + +/** + * Superscript icon - Superscript text formatting + */ +export function Superscript(props: IconProps) { + return ( + + + + ) +} + +export default Superscript