Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 327bd4a

Browse files
authoredMar 4, 2025··
Merge pull request #947 from Vidit-Kushwaha/chore/icons
Add New Icons to Sistent Icons
2 parents 1c32b4d + df9e56b commit 327bd4a

File tree

5 files changed

+66
-0
lines changed

5 files changed

+66
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { FC } from 'react';
2+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
3+
import { IconProps } from '../types';
4+
5+
const ArrowCompressIcon: FC<IconProps> = ({
6+
width = DEFAULT_WIDTH,
7+
height = DEFAULT_HEIGHT,
8+
...props
9+
}) => {
10+
return (
11+
<svg
12+
width={width}
13+
height={height}
14+
viewBox="0 0 24 24"
15+
fill="none"
16+
xmlns="http://www.w3.org/2000/svg"
17+
xmlnsXlink="http://www.w3.org/1999/xlink"
18+
transform="matrix(-1,0,0,1,0,0)"
19+
{...props}
20+
>
21+
<path
22+
d="m5 5 5 5m0 0V5m0 5H5m14 9-5-5m0 0v5m0-5h5"
23+
stroke="#000"
24+
strokeWidth={2}
25+
strokeLinecap="round"
26+
strokeLinejoin="round"
27+
/>
28+
</svg>
29+
);
30+
};
31+
32+
export default ArrowCompressIcon;

‎src/icons/ArrowCompress/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as ArrowCompressIcon } from './ArrowCompressIcon';
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { FC } from 'react';
2+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
3+
import { IconProps } from '../types';
4+
5+
const ArrowCompressIcon: FC<IconProps> = ({
6+
width = DEFAULT_WIDTH,
7+
height = DEFAULT_HEIGHT,
8+
...props
9+
}) => {
10+
return (
11+
<svg
12+
width={width}
13+
height={height}
14+
viewBox="0 0 24 24"
15+
xmlns="http://www.w3.org/2000/svg"
16+
fill="none"
17+
{...props}
18+
>
19+
<path
20+
d="m5 5 5 5m0 0V5m0 5H5m14 9-5-5m0 0v5m0-5h5"
21+
stroke="#000"
22+
strokeWidth={2}
23+
strokeLinecap="round"
24+
strokeLinejoin="round"
25+
/>
26+
</svg>
27+
);
28+
};
29+
30+
export default ArrowCompressIcon;

‎src/icons/ArrowExpand/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as ArrowExpandIcon } from './ArrowExpandIcon';

‎src/icons/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
export * from './Add';
22
export * from './AddCircle';
33
export * from './Application';
4+
export * from './ArrowCompress';
5+
export * from './ArrowExpand';
46
export * from './Bell';
57
export * from './Bus';
68
export * from './CatalogIcon';

0 commit comments

Comments
 (0)
Please sign in to comment.