in my current project it looks like this ```privat...
# compose
j
in my current project it looks like this
Copy code
private const val BUTTON_HEIGHT_DP = 40

object Primary : Property<Button> by CompositeProperty(
	PrimarySmallBold,
	TextColor(android.R.color.white),
	Caps,
	Size(height = BUTTON_HEIGHT_DP.dp, width = MatchParent),
	Background(R.drawable.primary_button_selectable),
	Shadowless
)

object Secondary : Property<Button> by CompositeProperty(
	AccentSmallBold,
	Caps,
	Ripple,
	Size(height = BUTTON_HEIGHT_DP.dp, width = MatchParent)
)