
Curated vector icon set featuring hundreds of clean, customizable UI icons, with ready-to-use SVG/vector assets and helpers for easy composition and theming.
A Kotlin Multiplatform library providing ~6,000 high-quality icons from Tabler Icons, ready to use in Jetpack Compose and Compose Multiplatform (Android, iOS, Desktop).
Add the dependency to your commonMain source set or module-level build.gradle.kts:
implementation("dev.seyfarth:tabler-icons-kmp:1.0.0")If you use a version catalog, add the following to your gradle/libs.versions.toml file:
[versions]
tablerIconsKmp = "1.0.0"
[libraries]
tabler-icons-kmp = { module = "dev.seyfarth:tabler-icons-kmp", version.ref = "tablerIconsKmp" }Then in your commonMain source set or module-level build.gradle.kts, you can use the dependency like this:
implementation(libs.tabler.icons.kmp)The icons are organized inside the TablerIcons object, split into Filled and Outlined categories.
@Composable
fun MyScreen() {
Icon(
imageVector = TablerIcons.Filled.Home,
contentDescription = "Home icon"
)
Icon(
imageVector = TablerIcons.Outlined.DotsVertical,
contentDescription = "Dots vertical icon"
)
}A Kotlin Multiplatform library providing ~6,000 high-quality icons from Tabler Icons, ready to use in Jetpack Compose and Compose Multiplatform (Android, iOS, Desktop).
Add the dependency to your commonMain source set or module-level build.gradle.kts:
implementation("dev.seyfarth:tabler-icons-kmp:1.0.0")If you use a version catalog, add the following to your gradle/libs.versions.toml file:
[versions]
tablerIconsKmp = "1.0.0"
[libraries]
tabler-icons-kmp = { module = "dev.seyfarth:tabler-icons-kmp", version.ref = "tablerIconsKmp" }Then in your commonMain source set or module-level build.gradle.kts, you can use the dependency like this:
implementation(libs.tabler.icons.kmp)The icons are organized inside the TablerIcons object, split into Filled and Outlined categories.
@Composable
fun MyScreen() {
Icon(
imageVector = TablerIcons.Filled.Home,
contentDescription = "Home icon"
)
Icon(
imageVector = TablerIcons.Outlined.DotsVertical,
contentDescription = "Dots vertical icon"
)
}