File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { DEFAULT_HEIGHT , DEFAULT_WIDTH , DEFAULT_FILL_NONE } from '../../constants/constants' ;
2+ import { IconProps } from '../types' ;
3+
4+ const TrendingUpIcon = ( {
5+ width = DEFAULT_WIDTH ,
6+ height = DEFAULT_HEIGHT ,
7+ fill = DEFAULT_FILL_NONE ,
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 @@ -121,6 +121,7 @@ export * from './Teams';
121121export * from './TerminalIcon' ;
122122export * from './Toolkit' ;
123123export * from './Touch' ;
124+ export * from './TrendingUp'
124125export * from './Triangle' ;
125126export * from './Tropy' ;
126127export * from './Undeploy' ;
You can’t perform that action at this time.
0 commit comments