File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed
Expand file tree Collapse file tree 3 files changed +28
-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 AccessTimeIcon = ( {
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
19+ d = "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2M12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8m.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"
20+ fill = { fill }
21+ />
22+ </ svg >
23+ ) ;
24+ } ;
25+
26+ export default AccessTimeIcon ;
Original file line number Diff line number Diff line change 1+ export { default as AccessTime } from './AccessTimeIcon' ;
Original file line number Diff line number Diff line change 11export * from './Academy' ;
2+ export * from './AccessTime' ;
23export * from './Add' ;
34export * from './AddCircle' ;
45export * from './Application' ;
You can’t perform that action at this time.
0 commit comments