code: icons,fakemui,tsx (3 files)

This commit is contained in:
Richard Ward
2025-12-30 12:47:33 +00:00
parent 44e7b724b6
commit 63f91b0555
3 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { Icon, type IconProps } from './Icon'
export const Autorenew = (props: IconProps) => (
<Icon {...props}>
<path d="M232 128a104.12 104.12 0 0 1-177.51 73.51L38.71 185.72a8 8 0 0 1-5.31-7.54V128a8 8 0 0 1 8-8h50.18a8 8 0 0 1 5.31 14.01l-18.01 16.09A72 72 0 0 0 200 128a72.12 72.12 0 0 0-2.21-17.92 8.00037 8.00037 0 0 1 15.5-4 88.24 88.24 0 0 1 2.71 21.92Zm-23.5-73.82a8.00037 8.00037 0 0 0-11.32.22A88 88 0 0 0 40 128a88.24 88.24 0 0 0 2.71 21.92 8.00037 8.00037 0 0 0 15.5-4A72.12 72.12 0 0 1 56 128a72 72 0 0 1 123.12-50.09l-18.01 16.09a8 8 0 0 0 5.31 14.01h50.18a8 8 0 0 0 8-8V49.82a8 8 0 0 0-5.31-7.54 8.00037 8.00037 0 0 0-10.79 11.9Z" />
</Icon>
)

View File

@@ -0,0 +1,7 @@
import { Icon, type IconProps } from './Icon'
export const OpenInNew = (props: IconProps) => (
<Icon {...props}>
<path d="M224 104a8 8 0 0 1-16 0V59.31l-66.34 66.35a8.00035 8.00035 0 0 1-11.32-11.32L196.69 48H152a8 8 0 0 1 0-16h64a8.00039 8.00039 0 0 1 8 8Zm-40 24a8 8 0 0 0-8 8v72H48V80h72a8 8 0 0 0 0-16H48a16.01833 16.01833 0 0 0-16 16v128a16.01833 16.01833 0 0 0 16 16h128a16.01833 16.01833 0 0 0 16-16v-72a8 8 0 0 0-8-8Z" />
</Icon>
)

View File

@@ -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'