add Icon#Custom

This commit is contained in:
InsanusMokrassar 2022-01-21 21:37:16 +06:00
parent 814045a43f
commit 65703d1c22
2 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,8 @@
## 0.0.13
* Add `Icon#Custom`
## 0.0.12
* Add `rowAttributes` to table fun

View File

@ -226,6 +226,8 @@ sealed class Icon(val name: String) {
}
}
class Custom(name: String) : Icon(name)
@Composable
fun drawAsButton(
vararg modifiers: UIKitModifier,