diff --git a/apps/site/components/Common/Select/index.stories.tsx b/apps/site/components/Common/Select/index.stories.tsx index c233b69cf1f17..59b5da23b7f48 100644 --- a/apps/site/components/Common/Select/index.stories.tsx +++ b/apps/site/components/Common/Select/index.stories.tsx @@ -1,6 +1,7 @@ import type { Meta as MetaObj, StoryObj } from '@storybook/react'; import Select from '@/components/Common/Select'; +import AIX from '@/components/Icons/Platform/AIX'; import Apple from '@/components/Icons/Platform/Apple'; import Linux from '@/components/Icons/Platform/Linux'; import Microsoft from '@/components/Icons/Platform/Microsoft'; @@ -90,6 +91,11 @@ export const InlineSelect: Story = { label: 'Windows', iconImage: , }, + { + value: 'aix', + label: 'AIX', + iconImage: , + }, ], }, ], diff --git a/apps/site/components/Downloads/Release/OperatingSystemDropdown.tsx b/apps/site/components/Downloads/Release/OperatingSystemDropdown.tsx index eccb0f21cc4e7..342b55c85386e 100644 --- a/apps/site/components/Downloads/Release/OperatingSystemDropdown.tsx +++ b/apps/site/components/Downloads/Release/OperatingSystemDropdown.tsx @@ -5,8 +5,8 @@ import { useContext, useEffect } from 'react'; import type { FC } from 'react'; import Select from '@/components/Common/Select'; +import AIX from '@/components/Icons/Platform/AIX'; import Apple from '@/components/Icons/Platform/Apple'; -import Aix from '@/components/Icons/Platform/Generic'; import Linux from '@/components/Icons/Platform/Linux'; import Microsoft from '@/components/Icons/Platform/Microsoft'; import { useDetectOS } from '@/hooks/react-client'; @@ -57,7 +57,7 @@ const OperatingSystemDropdown: FC = ({ WIN: , MAC: , LINUX: , - AIX: , + AIX: , }, })} ariaLabel={t('layouts.download.dropdown.os')} diff --git a/apps/site/components/Icons/Platform/AIX.tsx b/apps/site/components/Icons/Platform/AIX.tsx new file mode 100644 index 0000000000000..53f9f40b762e5 --- /dev/null +++ b/apps/site/components/Icons/Platform/AIX.tsx @@ -0,0 +1,46 @@ +import type { FC, SVGProps } from 'react'; + +const AIX: FC> = props => ( + + + + + + + + + + +); + +export default AIX; diff --git a/apps/site/components/__design__/platform-logos.stories.tsx b/apps/site/components/__design__/platform-logos.stories.tsx index e383be1216b01..29cea28d7f916 100644 --- a/apps/site/components/__design__/platform-logos.stories.tsx +++ b/apps/site/components/__design__/platform-logos.stories.tsx @@ -1,5 +1,6 @@ import type { Meta as MetaObj, StoryObj } from '@storybook/react'; +import AIX from '@/components/Icons/Platform/AIX'; import Apple from '@/components/Icons/Platform/Apple'; import Choco from '@/components/Icons/Platform/Choco'; import Docker from '@/components/Icons/Platform/Docker'; @@ -16,6 +17,7 @@ export const PlatformLogos: StoryObj = { +