Skip to content

Commit 6d44a1b

Browse files
committed
added timer icon
Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>
1 parent 88c465c commit 6d44a1b

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_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const TimerIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
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
@@ -118,6 +118,7 @@ export * from './TachographDigital';
118118
export * from './Tachometer';
119119
export * from './Teams';
120120
export * from './TerminalIcon';
121+
export * from './Timer';
121122
export * from './Toolkit';
122123
export * from './Touch';
123124
export * from './Triangle';

0 commit comments

Comments
 (0)