InfoBoxStyle

interface InfoBoxStyle

InfoBoxStyle is an interface that defines the styling properties for an information box. It provides customizable colors for the background, border, text, and icon.

Each property is annotated with @Composable, allowing it to be used within composable functions and providing the ability to dynamically change styles based on the composition context.

Properties:

Inheritors

Properties

Link copied to clipboard
abstract val backgroundColor: Color

A Color that sets the background color of the info box.

Link copied to clipboard
abstract val borderColor: Color

A Color that sets the border color of the info box.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract val iconTint: Color

A Color that sets the tint color for the icon displayed in the info box.

Link copied to clipboard
abstract val textColor: Color

A Color that sets the color of the text within the info box.