From e0fc4033713689945e525b034a577f2be3b44d16 Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 12:33:31 +0000 Subject: [PATCH] code: tsx,icons,fakemui (2 files) --- fakemui/icons/Tab.tsx | 9 +++++++++ fakemui/icons/Tabs.tsx | 10 ++++++++++ 2 files changed, 19 insertions(+) create mode 100644 fakemui/icons/Tab.tsx create mode 100644 fakemui/icons/Tabs.tsx diff --git a/fakemui/icons/Tab.tsx b/fakemui/icons/Tab.tsx new file mode 100644 index 000000000..57a4f2e5e --- /dev/null +++ b/fakemui/icons/Tab.tsx @@ -0,0 +1,9 @@ +import { Icon, IconProps } from './Icon' + +export const Tab = (props: IconProps) => ( + + + + + +) diff --git a/fakemui/icons/Tabs.tsx b/fakemui/icons/Tabs.tsx new file mode 100644 index 000000000..de393d9b0 --- /dev/null +++ b/fakemui/icons/Tabs.tsx @@ -0,0 +1,10 @@ +import { Icon, IconProps } from './Icon' + +export const Tabs = (props: IconProps) => ( + + + + + + +)