Skip to content

Commit 4926dfd

Browse files
Merge pull request #1283 from kishore08-07/add-timer-icon
Added Timer icon
2 parents e1a69f6 + 8938deb commit 4926dfd

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

src/icons/Timer/TimerIcon.tsx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, KEPPEL_GREEN_FILL } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const TimerIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = KEPPEL_GREEN_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+
{...props}
17+
>
18+
<path d="M9 1h6v2H9zm10.03 6.39 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61M13 14h-2V8h2z" fill={fill} />
19+
</svg>
20+
);
21+
};
22+
23+
export default TimerIcon;

src/icons/Timer/index.ts

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

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ export * from './TachographDigital';
122122
export * from './Tachometer';
123123
export * from './Teams';
124124
export * from './TerminalIcon';
125+
export * from './Timer';
125126
export * from './Toolkit';
126127
export * from './Touch';
127128
export * from './TrendingUp'

0 commit comments

Comments
 (0)