From 63f91b055582257f32b347aa431e68ed08d345ca Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 12:47:33 +0000 Subject: [PATCH] code: icons,fakemui,tsx (3 files) --- fakemui/icons/Autorenew.tsx | 7 +++++++ fakemui/icons/OpenInNew.tsx | 7 +++++++ fakemui/icons/index.ts | 2 ++ 3 files changed, 16 insertions(+) create mode 100644 fakemui/icons/Autorenew.tsx create mode 100644 fakemui/icons/OpenInNew.tsx diff --git a/fakemui/icons/Autorenew.tsx b/fakemui/icons/Autorenew.tsx new file mode 100644 index 000000000..276eb4381 --- /dev/null +++ b/fakemui/icons/Autorenew.tsx @@ -0,0 +1,7 @@ +import { Icon, type IconProps } from './Icon' + +export const Autorenew = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/OpenInNew.tsx b/fakemui/icons/OpenInNew.tsx new file mode 100644 index 000000000..55d863885 --- /dev/null +++ b/fakemui/icons/OpenInNew.tsx @@ -0,0 +1,7 @@ +import { Icon, type IconProps } from './Icon' + +export const OpenInNew = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/index.ts b/fakemui/icons/index.ts index b6209fe30..a3eef1a16 100644 --- a/fakemui/icons/index.ts +++ b/fakemui/icons/index.ts @@ -248,6 +248,8 @@ export { LockRounded } from './LockRounded' export { CheckCircleOutline } from './CheckCircleOutline' export { Cancel } from './Cancel' export { HighlightOff } from './HighlightOff' +export { OpenInNew } from './OpenInNew' +export { Autorenew } from './Autorenew' // Authentication & Access Control export { Profile } from './Profile'