From ecec7cacc453fde2b9326af4fd7399c7eb949a36 Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 12:57:37 +0000 Subject: [PATCH] code: tsx,icons,fakemui (4 files) --- fakemui/icons/ArrowUpDown.tsx | 11 +++++++++++ fakemui/icons/Fullscreen.tsx | 11 +++++++++++ fakemui/icons/FullscreenExit.tsx | 11 +++++++++++ fakemui/icons/People.tsx | 11 +++++++++++ 4 files changed, 44 insertions(+) create mode 100644 fakemui/icons/ArrowUpDown.tsx create mode 100644 fakemui/icons/Fullscreen.tsx create mode 100644 fakemui/icons/FullscreenExit.tsx create mode 100644 fakemui/icons/People.tsx diff --git a/fakemui/icons/ArrowUpDown.tsx b/fakemui/icons/ArrowUpDown.tsx new file mode 100644 index 000000000..4928689e8 --- /dev/null +++ b/fakemui/icons/ArrowUpDown.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const ArrowUpDown = (props: IconProps) => ( + + + + + + +) diff --git a/fakemui/icons/Fullscreen.tsx b/fakemui/icons/Fullscreen.tsx new file mode 100644 index 000000000..0237dc976 --- /dev/null +++ b/fakemui/icons/Fullscreen.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Fullscreen = (props: IconProps) => ( + + + + + + +) diff --git a/fakemui/icons/FullscreenExit.tsx b/fakemui/icons/FullscreenExit.tsx new file mode 100644 index 000000000..4f020477c --- /dev/null +++ b/fakemui/icons/FullscreenExit.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const FullscreenExit = (props: IconProps) => ( + + + + + + +) diff --git a/fakemui/icons/People.tsx b/fakemui/icons/People.tsx new file mode 100644 index 000000000..6ae41c4d3 --- /dev/null +++ b/fakemui/icons/People.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const People = (props: IconProps) => ( + + + + + + +)