Skip to content

Commit 0ce91ae

Browse files
Merge pull request #1280 from Katotodan/feat/icons/trending-up-icon
feat Add trending up Icon
2 parents 671dc2e + 1328a60 commit 0ce91ae

File tree

3 files changed

+24
-0
lines changed

3 files changed

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

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
@@ -123,6 +123,7 @@ export * from './Teams';
123123
export * from './TerminalIcon';
124124
export * from './Toolkit';
125125
export * from './Touch';
126+
export * from './TrendingUp'
126127
export * from './Triangle';
127128
export * from './Tropy';
128129
export * from './Undeploy';

0 commit comments

Comments
 (0)