File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11import type { Tab } from "@/types/workout" ;
2+ import { Dumbbell , Milk , Settings } from "lucide-react" ;
23
34type 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
You can’t perform that action at this time.
0 commit comments