BrowseBadges.kt 413 B

123456789101112131415
  1. package eu.kanade.presentation.browse
  2. import androidx.compose.material.icons.Icons
  3. import androidx.compose.material.icons.outlined.CollectionsBookmark
  4. import androidx.compose.runtime.Composable
  5. import tachiyomi.presentation.core.components.Badge
  6. @Composable
  7. fun InLibraryBadge(enabled: Boolean) {
  8. if (enabled) {
  9. Badge(
  10. imageVector = Icons.Outlined.CollectionsBookmark,
  11. )
  12. }
  13. }