From dd9c2cd285d03a84e7bc55df32b378f54c63242f Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 12:37:09 +0000 Subject: [PATCH] code: tsx,icons,fakemui (4 files) --- fakemui/icons/FirstPage.tsx | 9 +++++++++ fakemui/icons/GitBranch.tsx | 12 ++++++++++++ fakemui/icons/LastPage.tsx | 9 +++++++++ fakemui/icons/Robot.tsx | 13 +++++++++++++ 4 files changed, 43 insertions(+) create mode 100644 fakemui/icons/FirstPage.tsx create mode 100644 fakemui/icons/GitBranch.tsx create mode 100644 fakemui/icons/LastPage.tsx create mode 100644 fakemui/icons/Robot.tsx diff --git a/fakemui/icons/FirstPage.tsx b/fakemui/icons/FirstPage.tsx new file mode 100644 index 000000000..e334ff273 --- /dev/null +++ b/fakemui/icons/FirstPage.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const FirstPage = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/GitBranch.tsx b/fakemui/icons/GitBranch.tsx new file mode 100644 index 000000000..3a4105f3e --- /dev/null +++ b/fakemui/icons/GitBranch.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const GitBranch = (props: IconProps) => ( + + + + + + + +) diff --git a/fakemui/icons/LastPage.tsx b/fakemui/icons/LastPage.tsx new file mode 100644 index 000000000..639484875 --- /dev/null +++ b/fakemui/icons/LastPage.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const LastPage = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/Robot.tsx b/fakemui/icons/Robot.tsx new file mode 100644 index 000000000..57941e35c --- /dev/null +++ b/fakemui/icons/Robot.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Robot = (props: IconProps) => ( + + + + + + + + +)