diff --git a/src/icons/MergeOutlined/MergeOutlinedIcon.tsx b/src/icons/MergeOutlined/MergeOutlinedIcon.tsx new file mode 100644 index 00000000..c635b693 --- /dev/null +++ b/src/icons/MergeOutlined/MergeOutlinedIcon.tsx @@ -0,0 +1,26 @@ +import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const MergeOutlinedIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + ...props +}: IconProps): JSX.Element => { + return ( + + + + ); +}; +export default MergeOutlinedIcon; diff --git a/src/icons/MergeOutlined/index.ts b/src/icons/MergeOutlined/index.ts new file mode 100644 index 00000000..4a011cf9 --- /dev/null +++ b/src/icons/MergeOutlined/index.ts @@ -0,0 +1 @@ +export { default as MergeOutlinedIcon } from './MergeOutlinedIcon'; diff --git a/src/icons/Settings/SettingsIcon.tsx b/src/icons/Settings/SettingsIcon.tsx index c9b593ee..267a57b8 100644 --- a/src/icons/Settings/SettingsIcon.tsx +++ b/src/icons/Settings/SettingsIcon.tsx @@ -1,10 +1,9 @@ -import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants'; +import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; import { IconProps } from '../types'; export const SettingsIcon = ({ width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT, - fill = DEFAULT_FILL_NONE, ...props }: IconProps): JSX.Element => { return ( @@ -16,7 +15,7 @@ export const SettingsIcon = ({ {...props} > diff --git a/src/icons/index.ts b/src/icons/index.ts index 26c09719..d4430443 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -109,6 +109,7 @@ export * from './Logout'; export * from './Mendeley'; export * from './Menu'; export { default as MergeActionIcon } from './MergeActionIcon'; +export * from './MergeOutlined'; export * from './Meshery'; export * from './MesheryFilter'; export * from './MesheryOperator';