diff --git a/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowDown.stories.tsx b/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowDown.stories.tsx deleted file mode 100644 index 988222c35..000000000 --- a/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowDown.stories.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import type { Meta } from '@storybook/react'; - -import { WfoArrowNarrowDown } from './WfoArrowNarrowDown'; - -const Story: Meta = { - component: WfoArrowNarrowDown, - title: 'Icons/WfoArrowNarrowDown', -}; -export default Story; - -export const Primary = { - args: {}, -}; diff --git a/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowDown.tsx b/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowDown.tsx deleted file mode 100644 index 9da78be5c..000000000 --- a/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowDown.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import React, { FC } from 'react'; - -import { WfoIconProps } from './WfoIconProps'; - -export const WfoArrowNarrowDown: FC = ({ - width = 16, - height = 20, - color = '#000000', -}) => ( - - icon/arrow-narrow-down - - - - - - -); diff --git a/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowUp.stories.tsx b/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowUp.stories.tsx deleted file mode 100644 index 30e7c0c0e..000000000 --- a/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowUp.stories.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import type { Meta } from '@storybook/react'; - -import { WfoArrowNarrowUp } from './WfoArrowNarrowUp'; - -const Story: Meta = { - component: WfoArrowNarrowUp, - title: 'Icons/WfoArrowNarrowUp', -}; -export default Story; - -export const Primary = { - args: {}, -}; diff --git a/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowUp.tsx b/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowUp.tsx deleted file mode 100644 index 371e800ff..000000000 --- a/packages/orchestrator-ui-components/src/icons/WfoArrowNarrowUp.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import React, { FC } from 'react'; - -import { WfoIconProps } from './WfoIconProps'; - -export const WfoArrowNarrowUp: FC = ({ - width = 16, - height = 20, - color = '#000000', -}) => ( - - icon/arrow-narrow-up - - - - - - -);