File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed
Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ import { DEFAULT_HEIGHT , DEFAULT_WIDTH , KEPPEL_GREEN_FILL } from '../../constants/constants' ;
2+ import { IconProps } from '../types' ;
3+
4+ const TrendingUpIcon = ( {
5+ width = DEFAULT_WIDTH ,
6+ height = DEFAULT_HEIGHT ,
7+ fill = KEPPEL_GREEN_FILL ,
8+ ...props
9+ } : IconProps ) : JSX . Element => (
10+ < svg
11+ width = { width }
12+ height = { height }
13+ viewBox = "0 0 24 24"
14+ fill = { fill }
15+ xmlns = "http://www.w3.org/2000/svg"
16+ { ...props }
17+ >
18+ < path d = "M1.414 16.432 0 15.018l7.071-7.071 6.364 6.364 4.243-4.243-1.743-1.742 6.692-1.793-1.793 6.692-1.742-1.742-5.657 5.656-6.364-6.364z" />
19+ </ svg >
20+ ) ;
21+
22+ export default TrendingUpIcon ;
Original file line number Diff line number Diff line change 1+ export { default as TrendingUpIcon } from './TrendingUpIcon' ;
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ export * from './Teams';
123123export * from './TerminalIcon' ;
124124export * from './Toolkit' ;
125125export * from './Touch' ;
126+ export * from './TrendingUp'
126127export * from './Triangle' ;
127128export * from './Tropy' ;
128129export * from './Undeploy' ;
You can’t perform that action at this time.
0 commit comments