Skip to content

Commit f627262

Browse files
Merge branch 'master' into feat/icons/trending-up-icon
2 parents beb6833 + d919473 commit f627262

5 files changed

Lines changed: 31 additions & 9 deletions

File tree

package-lock.json

Lines changed: 5 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"notistack": "^3.0.2",
7474
"prettier": "^3.5.3",
7575
"prettier-plugin-organize-imports": "^4.1.0",
76-
"react-error-boundary": "^5.0.0",
76+
"react-error-boundary": "^6.1.0",
7777
"react-markdown": "^8.0.7",
7878
"react-redux": "^8.1.1",
7979
"redux": "^5.0.1",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const ArrowBackIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
return (
11+
<svg
12+
width={width}
13+
height={height}
14+
xmlns="http://www.w3.org/2000/svg"
15+
viewBox="0 0 24 24"
16+
{...props}
17+
>
18+
<path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20z" fill={fill} />
19+
</svg>
20+
);
21+
};
22+
23+
export default ArrowBackIcon;

src/icons/ArrowBack/index.ts

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

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export * from './Academy';
22
export * from './Add';
33
export * from './AddCircle';
44
export * from './Application';
5+
export * from './ArrowBack';
56
export * from './ArrowCompress';
67
export * from './ArrowExpand';
78
export * from './Bell';

0 commit comments

Comments
 (0)