From c00887538df2318f64eea8539d34b328a92ff7cf Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 13:47:19 +0000 Subject: [PATCH] code: tsx,icons,fakemui (7 files) --- fakemui/icons/DarkMode.tsx | 8 ++++++++ fakemui/icons/Desktop.tsx | 10 ++++++++++ fakemui/icons/Language.tsx | 12 ++++++++++++ fakemui/icons/LightMode.tsx | 16 ++++++++++++++++ fakemui/icons/QrCode.tsx | 17 +++++++++++++++++ fakemui/icons/RotateLeft.tsx | 9 +++++++++ fakemui/icons/RotateRight.tsx | 9 +++++++++ 7 files changed, 81 insertions(+) create mode 100644 fakemui/icons/DarkMode.tsx create mode 100644 fakemui/icons/Desktop.tsx create mode 100644 fakemui/icons/Language.tsx create mode 100644 fakemui/icons/LightMode.tsx create mode 100644 fakemui/icons/QrCode.tsx create mode 100644 fakemui/icons/RotateLeft.tsx create mode 100644 fakemui/icons/RotateRight.tsx diff --git a/fakemui/icons/DarkMode.tsx b/fakemui/icons/DarkMode.tsx new file mode 100644 index 000000000..d437789c1 --- /dev/null +++ b/fakemui/icons/DarkMode.tsx @@ -0,0 +1,8 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const DarkMode = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/Desktop.tsx b/fakemui/icons/Desktop.tsx new file mode 100644 index 000000000..7128e8669 --- /dev/null +++ b/fakemui/icons/Desktop.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Desktop = (props: IconProps) => ( + + + + + +) diff --git a/fakemui/icons/Language.tsx b/fakemui/icons/Language.tsx new file mode 100644 index 000000000..70177313e --- /dev/null +++ b/fakemui/icons/Language.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Language = (props: IconProps) => ( + + + + + + + +) diff --git a/fakemui/icons/LightMode.tsx b/fakemui/icons/LightMode.tsx new file mode 100644 index 000000000..42eb93b87 --- /dev/null +++ b/fakemui/icons/LightMode.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const LightMode = (props: IconProps) => ( + + + + + + + + + + + +) diff --git a/fakemui/icons/QrCode.tsx b/fakemui/icons/QrCode.tsx new file mode 100644 index 000000000..2cefa4e9e --- /dev/null +++ b/fakemui/icons/QrCode.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const QrCode = (props: IconProps) => ( + + + + + + + + + + + + +) diff --git a/fakemui/icons/RotateLeft.tsx b/fakemui/icons/RotateLeft.tsx new file mode 100644 index 000000000..1245af3a8 --- /dev/null +++ b/fakemui/icons/RotateLeft.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const RotateLeft = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/RotateRight.tsx b/fakemui/icons/RotateRight.tsx new file mode 100644 index 000000000..f9d899482 --- /dev/null +++ b/fakemui/icons/RotateRight.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const RotateRight = (props: IconProps) => ( + + + + +)