Merge pull request #13 from InsanusMokrassar/0.0.13

0.0.13
This commit is contained in:
InsanusMokrassar 2022-01-21 21:37:39 +06:00 committed by GitHub
commit d590762d28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,