Skip to content

Commit 4717588

Browse files
committed
add LanOutlinedIcon to sistent icons
Signed-off-by: Daniel Mungai <chegedan699@gmail.com>
1 parent 5368420 commit 4717588

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

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

0 commit comments

Comments
 (0)