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'