-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLevel.tsx
More file actions
41 lines (39 loc) · 1.07 KB
/
Level.tsx
File metadata and controls
41 lines (39 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import TreeStatusCard from './components/TreeStatusCard';
import LevelInfoCard from './components/LevelInfoCard';
import { Icon } from '@pinback/design-system/icons';
const Level = () => {
return (
<div className="bg-secondary flex flex-col gap-[2rem] p-[1rem]">
<Icon
name={'tooltip_1'}
width={46}
height={46}
className="rounded-[0.8rem]"
/>
<Icon
name={'ic_plus'}
width={46}
height={46}
className="rounded-[0.8rem]"
/>
<Icon
name={'ic_plus'}
width={46}
height={46}
className="rounded-[0.8rem]"
/>
<Icon name={'tooltip_4'} className="rounded-[0.8rem]" />
<LevelInfoCard />
<TreeStatusCard acorns={0} />
<TreeStatusCard acorns={1} />
<TreeStatusCard acorns={2} />
<TreeStatusCard acorns={3} />
<TreeStatusCard acorns={4} />
<TreeStatusCard acorns={5} />
<TreeStatusCard acorns={6} />
<TreeStatusCard acorns={7} />
<TreeStatusCard acorns={987987} />
</div>
);
};
export default Level;