Merge pull request #13 from InsanusMokrassar/0.0.13

0.0.13
This commit is contained in:
2022-01-21 21:37:39 +06:00
committed by GitHub
3 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 0.0.13
* Add `Icon#Custom`
## 0.0.12
* Add `rowAttributes` to table fun

View File

@@ -9,4 +9,4 @@ android.enableJetifier=true
# Project data
group=dev.inmo
version=0.0.12
version=0.0.13

View File

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