AdderBox

@Composable
fun <T> AdderBox(maxNum: Int, items: List<T>, modifier: Modifier = Modifier, size: Dp = Theme.size.cell9, shape: Shape = Theme.shape.v7, onAdd: () -> Unit = {}, onReplace: (Int, T) -> Unit = { _, _ -> }, onDelete: (Int, T) -> Unit = { _, _ -> }, content: @Composable (Int, T) -> Unit)