File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { DEFAULT_HEIGHT , DEFAULT_WIDTH } from '../../constants/constants' ;
2+ import { IconProps } from '../types' ;
3+
4+ const LeaderboardIcon = ( {
5+ width = DEFAULT_WIDTH ,
6+ height = DEFAULT_HEIGHT ,
7+ fill = 'currentColor' ,
8+ ...props
9+ } : IconProps ) : JSX . Element => (
10+ < svg
11+ xmlns = "http://www.w3.org/2000/svg"
12+ height = { height }
13+ viewBox = "0 0 20 20"
14+ width = { width }
15+ fill = { fill }
16+ { ...props }
17+ >
18+ < rect fill = { fill } x = "14" y = "0" width = "6" height = "20" />
19+ < rect fill = { fill } x = "7" y = "5" width = "6" height = "15" />
20+ < rect fill = { fill } y = "10" width = "6" height = "10" />
21+ </ svg >
22+ ) ;
23+
24+ export default LeaderboardIcon ;
Original file line number Diff line number Diff line change 1+ import LeaderBoardIcon from './LeaderBoardIcon' ;
2+
3+ export { LeaderBoardIcon } ;
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ export * from './InfoOutlined';
7272export * from './InviteUser' ;
7373export * from './Kanvas' ;
7474export * from './Kubernetes' ;
75+ export * from './LeaderBoard' ;
7576export * from './Learning' ;
7677export * from './LeftAngledArrow' ;
7778export * from './LeftArrow' ;
You can’t perform that action at this time.
0 commit comments