Skip to content

Commit

Permalink
feat/#23 : 불필요한 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwon12 committed Jan 25, 2025
1 parent 72b4421 commit 55b9b00
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.yapp.feature.login.component
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
Expand All @@ -18,7 +19,7 @@ fun HorizontalDivider(){
.fillMaxWidth()
.padding(top = 24.dp)
) {
androidx.compose.material3.HorizontalDivider(
HorizontalDivider(
modifier = Modifier.weight(1f),
color = YappTheme.colorScheme.lineNormalNormal,
thickness = 1.dp
Expand All @@ -29,7 +30,7 @@ fun HorizontalDivider(){
color = YappTheme.colorScheme.labelAssistive,
style = YappTheme.typography.caption1Medium
)
androidx.compose.material3.HorizontalDivider(
HorizontalDivider(
modifier = Modifier.weight(1f),
color = YappTheme.colorScheme.lineNormalNormal,
thickness = 1.dp
Expand Down

0 comments on commit 55b9b00

Please sign in to comment.