Skip to content

Commit b1a0f73

Browse files
Merge pull request #1553 from Daniel-1600/feat/add-lan-outlined-icon
add LanOutlinedIcon to sistent icons
2 parents 992fed8 + 45926a8 commit b1a0f73

3 files changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const LanOutlinedIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL,
8+
title,
9+
...props
10+
}: IconProps): JSX.Element => {
11+
return (
12+
<svg
13+
width={width}
14+
height={height}
15+
fill={fill}
16+
xmlns="http://www.w3.org/2000/svg"
17+
viewBox="0 0 24 24"
18+
{...props}
19+
>
20+
{title && <title>{title}</title>}
21+
<path d="M13,22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3V22z M10,7V4h4v3H10z M9,17v3H5v-3H9z M19,17v3h-4v-3H19z" />
22+
</svg>
23+
);
24+
};
25+
26+
export default LanOutlinedIcon;

src/icons/LanOutlined/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as LanOutlinedIcon } from './LanOutlined';

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ export * from './InviteUser';
114114
export * from './Kanvas';
115115
export * from './Kubernetes';
116116
export * from './Launch';
117+
export * from './LanOutlined';
117118
export * from './LeaderBoard';
118119
export * from './Learning';
119120
export * from './LeftAngledArrow';

0 commit comments

Comments
 (0)