From 4620a1ced15435c2473bd51143033a1c7e5533d1 Mon Sep 17 00:00:00 2001 From: Daniel Mungai Date: Fri, 15 May 2026 17:24:55 +0300 Subject: [PATCH] add LanOutlinedIcon to sistent icons Signed-off-by: Daniel Mungai --- src/icons/LanOutlined/LanOutlined.tsx | 26 ++++++++++++++++++++++++++ src/icons/LanOutlined/index.ts | 1 + src/icons/index.ts | 1 + 3 files changed, 28 insertions(+) create mode 100644 src/icons/LanOutlined/LanOutlined.tsx create mode 100644 src/icons/LanOutlined/index.ts 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';