Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/icons/LanOutlined/LanOutlined.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<svg
width={width}
height={height}
fill={fill}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
{...props}
>
{title && <title>{title}</title>}
<path d="M13,22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3V22z M10,7V4h4v3H10z M9,17v3H5v-3H9z M19,17v3h-4v-3H19z" />
</svg>
);
};

export default LanOutlinedIcon;
1 change: 1 addition & 0 deletions src/icons/LanOutlined/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as LanOutlinedIcon } from './LanOutlined';
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The new icon is not currently exported from the main library entry point (src/icons/index.ts). To allow consumers to import LanOutlinedIcon directly from the icons package, please add an export statement for it in src/icons/index.ts.

1 change: 1 addition & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
Loading