File tree Expand file tree Collapse file tree 3 files changed +25
-0
lines changed
Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 1+ export { default as TimerIcon } from './TimerIcon' ;
Original file line number Diff line number Diff line change @@ -122,6 +122,7 @@ export * from './TachographDigital';
122122export * from './Tachometer' ;
123123export * from './Teams' ;
124124export * from './TerminalIcon' ;
125+ export * from './Timer' ;
125126export * from './Toolkit' ;
126127export * from './Touch' ;
127128export * from './TrendingUp'
You can’t perform that action at this time.
0 commit comments