Skip to content

Commit

Permalink
Update divider
Browse files Browse the repository at this point in the history
  • Loading branch information
yasanglass committed Feb 28, 2024
1 parent 36bd9f3 commit fa4d0ac
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.unit.Dp
import glass.yasan.concrete.theme.ConcreteTheme
import androidx.compose.material3.Divider as Material3Divider
import androidx.compose.material3.HorizontalDivider as Material3HorizontalDivider

@Composable
public fun Divider(
Expand All @@ -14,9 +14,9 @@ public fun Divider(
thickness: Dp = ConcreteTheme.sizes.borderStrokeWidth,
) {

Material3Divider(
Material3HorizontalDivider(
modifier = modifier,
color = color,
thickness = thickness,
color = color
)
}

0 comments on commit fa4d0ac

Please sign in to comment.