File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed
Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ import { DEFAULT_FILL , DEFAULT_HEIGHT , DEFAULT_WIDTH } from '../../constants/constants' ;
2+ import { IconProps } from '../types' ;
3+
4+ export const CompareArrowsIcon = ( {
5+ width = DEFAULT_WIDTH ,
6+ height = DEFAULT_HEIGHT ,
7+ fill = DEFAULT_FILL ,
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 = "circle-icon-svg"
17+ { ...props }
18+ >
19+ < path
20+ d = "M9.01 14H2v2h7.01v3L13 15l-3.99-4zm5.98-1v-3H22V8h-7.01V5L11 9z"
21+ fill = { fill }
22+ />
23+ </ svg >
24+ ) ;
25+ } ;
26+
27+ export default CompareArrowsIcon ;
Original file line number Diff line number Diff line change 1+ export { default as CompareArrowsIcon } from './CompareArrowsIcon' ;
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export * from './Close';
1818export * from './Cloud' ;
1919export * from './CollapseAll' ;
2020export * from './Column' ;
21+ export * from './CompareArrows' ;
2122export * from './Component' ;
2223export * from './Configuration' ;
2324export * from './ContentFilter' ;
You can’t perform that action at this time.
0 commit comments