diff --git a/src/icons/LanOutlined/LanOutlined.tsx b/src/icons/LanOutlined/LanOutlined.tsx new file mode 100644 index 00000000..cc406744 --- /dev/null +++ b/src/icons/LanOutlined/LanOutlined.tsx @@ -0,0 +1,26 @@ +import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const LanOutlinedIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL, + title, + ...props +}: IconProps): JSX.Element => { + return ( + + {title && {title}} + + + ); +}; + +export default LanOutlinedIcon; \ No newline at end of file diff --git a/src/icons/LanOutlined/index.ts b/src/icons/LanOutlined/index.ts new file mode 100644 index 00000000..850c96bd --- /dev/null +++ b/src/icons/LanOutlined/index.ts @@ -0,0 +1 @@ +export { default as LanOutlinedIcon } from './LanOutlined'; \ No newline at end of file diff --git a/src/icons/index.ts b/src/icons/index.ts index a27b9ebf..e9d5da5c 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -114,6 +114,7 @@ export * from './InviteUser'; export * from './Kanvas'; export * from './Kubernetes'; export * from './Launch'; +export * from './LanOutlined'; export * from './LeaderBoard'; export * from './Learning'; export * from './LeftAngledArrow';