Skip to content

Commit 4ba752b

Browse files
committed
Update Icons and Titles
1 parent 268f3f1 commit 4ba752b

2 files changed

Lines changed: 6 additions & 33 deletions

File tree

src/components/protein-screen.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ export function ProteinScreen({
4141
<div style={{ padding: "16px 20px 0" }}>
4242
<div style={labelTiny}>◉ Today · {todayLabel()}</div>
4343
<h1 style={hero}>
44-
PROTEIN
44+
DAILY
4545
<br />
46-
<span style={{ color: "#ff5a1f" }}>INTAKE.</span>
46+
<span style={{ color: "#ff5a1f" }}>PROTEIN.</span>
4747
</h1>
4848
</div>
4949

src/components/tab-bar.tsx

Lines changed: 4 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Tab } from "@/types/workout";
2+
import { Dumbbell, Milk, Settings } from "lucide-react";
23

34
type Item = {
45
id: Tab;
@@ -10,45 +11,17 @@ const ITEMS: Item[] = [
1011
{
1112
id: "protein",
1213
label: "Protein",
13-
icon: (
14-
<svg width="22" height="22" viewBox="0 0 24 24" fill="none">
15-
<path
16-
d="M6 3l6 4 6-4v6c0 5-3 9-6 12-3-3-6-7-6-12V3z"
17-
stroke="currentColor"
18-
strokeWidth="2"
19-
strokeLinejoin="round"
20-
/>
21-
</svg>
22-
),
14+
icon: <Milk />,
2315
},
2416
{
2517
id: "workouts",
2618
label: "Workouts",
27-
icon: (
28-
<svg width="22" height="22" viewBox="0 0 24 24" fill="none">
29-
<path
30-
d="M2 12h2m16 0h2M6 6v12M18 6v12M9 9v6h6V9H9z"
31-
stroke="currentColor"
32-
strokeWidth="2"
33-
strokeLinecap="round"
34-
/>
35-
</svg>
36-
),
19+
icon: <Dumbbell />,
3720
},
3821
{
3922
id: "settings",
4023
label: "",
41-
icon: (
42-
<svg width="22" height="22" viewBox="0 0 24 24" fill="none">
43-
<circle cx="12" cy="12" r="3" stroke="currentColor" strokeWidth="2" />
44-
<path
45-
d="M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 11-2.83 2.83l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09a1.65 1.65 0 00-1-1.51 1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 11-2.83-2.83l.06-.06a1.65 1.65 0 00.33-1.82 1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09a1.65 1.65 0 001.51-1 1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 112.83-2.83l.06.06a1.65 1.65 0 001.82.33h0a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51h0a1.65 1.65 0 001.82-.33l.06-.06a2 2 0 112.83 2.83l-.06.06a1.65 1.65 0 00-.33 1.82v0a1.65 1.65 0 001.51 1H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z"
46-
stroke="currentColor"
47-
strokeWidth="2"
48-
strokeLinejoin="round"
49-
/>
50-
</svg>
51-
),
24+
icon: <Settings />,
5225
},
5326
];
5427

0 commit comments

Comments
 (0)