PillLeadingItem

sealed class PillLeadingItem(source)

LeadingItem for Pill component

Inheritors

Types

Link copied to clipboard
data class Custom(val content: @Composable BoxScope.() -> Unit) : PillLeadingItem

Represents a composable to be displayed in the leading position. This should be used for images that require more business logic than just a painter.

Link copied to clipboard
data class Icon(val iconId: Int) : PillLeadingItem

Represents an icon to be displayed in the leading position.

Link copied to clipboard
data class Thumbnail(val painter: Painter) : PillLeadingItem

Represents a thumbnail to be displayed in the leading position.