@@ -69,17 +69,22 @@ const PetDiaryDetail = () => {
69
69
< Flex padding = "16px 22px" justify = "space-between" >
70
70
< Text typo = "Title3" > 시술날짜</ Text >
71
71
< Text typo = "Body2" css = { LightBody2 } >
72
- 2024-12-26
72
+ { diaryDetailData . groomingDate }
73
73
</ Text >
74
74
</ Flex >
75
75
< Seperator />
76
76
77
77
< Flex padding = "16px 22px" justify = "space-between" >
78
78
< Text typo = "Title3" > 담당자</ Text >
79
79
< WidthFitFlex gap = { 12 } >
80
- < ProfileImage width = { 20 } height = { 20 } borderRadius = { 99 } />
80
+ < ProfileImage
81
+ width = { 20 }
82
+ height = { 20 }
83
+ borderRadius = { 99 }
84
+ src = { diaryDetailData . groomerInfo . profileImageUrl }
85
+ />
81
86
< Text typo = "Body2" css = { LightBody2 } >
82
- 미나쌤
87
+ { diaryDetailData . groomerInfo . name }
83
88
</ Text >
84
89
</ WidthFitFlex >
85
90
</ Flex >
@@ -95,29 +100,41 @@ const PetDiaryDetail = () => {
95
100
< Text typo = "Caption1" colorCode = { theme . palette . Gray400 } >
96
101
미용사님이 작성하신 미용 일지에요
97
102
</ Text >
98
- < Flex gap = { 4 } justify = "flex-start" margin = "4px 0 0 0" >
99
- < SalonTag
100
- height = { 23 }
101
- content = { diaryDetailData . friendly }
102
- bg = { theme . palette . Normal100 }
103
- colorCode = { theme . palette . Normal700 }
104
- typo = "Label2"
105
- />
106
- < SalonTag
107
- height = { 23 }
108
- content = { diaryDetailData . reaction }
109
- bg = { theme . palette . Normal100 }
110
- colorCode = { theme . palette . Normal700 }
111
- typo = "Label2"
112
- />
113
- < SalonTag
114
- height = { 23 }
115
- content = { diaryDetailData . behavior }
116
- bg = { theme . palette . Normal100 }
117
- colorCode = { theme . palette . Normal700 }
118
- typo = "Label2"
119
- />
120
- </ Flex >
103
+ < TagListFlex gap = { 4 } justify = "flex-start" margin = "4px 0 0 0" >
104
+ < Flex justify = "space-between" >
105
+ < Text typo = "Label2" > 🥰 미용사와의 친화력</ Text >
106
+ < SalonTag
107
+ height = { 23 }
108
+ content = { diaryDetailData . friendly }
109
+ bg = { theme . palette . Normal100 }
110
+ colorCode = { theme . palette . Normal700 }
111
+ typo = "Label3"
112
+ padding = "10px"
113
+ />
114
+ </ Flex >
115
+ < Flex justify = "space-between" >
116
+ < Text typo = "Label2" > ✂️ 미용도구 반응</ Text >
117
+ < SalonTag
118
+ height = { 23 }
119
+ content = { diaryDetailData . reaction }
120
+ bg = { theme . palette . Normal100 }
121
+ colorCode = { theme . palette . Normal700 }
122
+ typo = "Label3"
123
+ padding = "10px"
124
+ />
125
+ </ Flex >
126
+ < Flex justify = "space-between" >
127
+ < Text typo = "Label2" > 🐶 행동 밎 짖음</ Text >
128
+ < SalonTag
129
+ height = { 23 }
130
+ content = { diaryDetailData . behavior }
131
+ bg = { theme . palette . Normal100 }
132
+ colorCode = { theme . palette . Normal700 }
133
+ typo = "Label3"
134
+ padding = "10px"
135
+ />
136
+ </ Flex >
137
+ </ TagListFlex >
121
138
</ Flex >
122
139
< Seperator height = "5px" />
123
140
< RelativeFlex padding = "25px 20px 117px 20px" >
@@ -152,3 +169,7 @@ const TapeWrapper = styled.div`
152
169
transform: translateX(-50%);
153
170
z-index: 10;
154
171
` ;
172
+
173
+ const TagListFlex = styled ( Flex ) `
174
+ flex-wrap: wrap;
175
+ ` ;
0 commit comments