diff --git a/src/icons/Menu/MenuIcon.tsx b/src/icons/Menu/MenuIcon.tsx new file mode 100644 index 00000000..5a1fcc2e --- /dev/null +++ b/src/icons/Menu/MenuIcon.tsx @@ -0,0 +1,24 @@ +import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const AddIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + ...props +}: IconProps): JSX.Element => { + return ( + + + + ); +}; + +export default AddIcon; diff --git a/src/icons/Menu/index.ts b/src/icons/Menu/index.ts new file mode 100644 index 00000000..9490dc0a --- /dev/null +++ b/src/icons/Menu/index.ts @@ -0,0 +1 @@ +export { default as MenuIcon } from './MenuIcon'; diff --git a/src/icons/index.ts b/src/icons/index.ts index bafdc2b1..6a8b4430 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -54,6 +54,7 @@ export * from './InfoOutlined'; export * from './Kubernetes'; export * from './LeftAngledArrow'; export * from './LeftArrow'; +export * from './Menu'; export * from './MesheryOperator'; export * from './Open'; export * from './PanTool';