When you use an `IconButton` , internally it has: ...
# compose
a
When you use an
IconButton
, internally it has:
Copy code
Box(modifier = Modifier.size(IconButtonDefaults.smallContainerSize())) {
  content()
}
How do I use
IconButtonDefaults.xSmallContainerSize
instead of
smallContainerSize
… even though its public i don’t see a way to specify it — trying to set the size directly on the
IconButton
doesn’t quite work right.
z
I believe you might just have to copy the code with that bit changed
👍 1
☝️ 1