Skip to content

Commit ee62662

Browse files
committed
Feat: Adding trendingUp Icon
Signed-off-by: DANIEL KATOTO <katotodan@gmail.com>
1 parent 3d63188 commit ee62662

3 files changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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;

src/icons/TrendingUp/index.ts

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

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ export * from './Teams';
121121
export * from './TerminalIcon';
122122
export * from './Toolkit';
123123
export * from './Touch';
124+
export * from './TrendingUp'
124125
export * from './Triangle';
125126
export * from './Tropy';
126127
export * from './Undeploy';

0 commit comments

Comments
 (0)