File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 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+ data-testid = "arrow-back-icon-svg"
17+ { ...props }
18+ >
19+ < path d = "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20z" fill = { fill } />
20+ </ svg >
21+ ) ;
22+ } ;
23+
24+ export default ArrowBackIcon ;
Original file line number Diff line number Diff line change 1+ export { default as ArrowBackIcon } from './ArrowBackIcon' ;
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ export * from './Academy';
22export * from './Add' ;
33export * from './AddCircle' ;
44export * from './Application' ;
5+ export * from './ArrowBack' ;
56export * from './ArrowCompress' ;
67export * from './ArrowExpand' ;
78export * from './Bell' ;
You can’t perform that action at this time.
0 commit comments