---
title: Ghost Button
date: '2025-07-02'
description: Ghost buttons are buttons with no visible bounds.
---

<!-- AUTOGEN:START -->
:::preview[ghostbutton]
@code
```kotlin
import androidx.compose.runtime.Composable
import com.composables.uikit.components.GhostButton
import com.composables.uikit.components.Text

@Composable
fun GhostButtonExample() {
    GhostButton(onClick = { /* TODO */ }) {
        Text("Ghost Button")
    }
}
```
@end
:::

## Installation

{{uikit:installation}}

## Usage

```kotlin
import androidx.compose.runtime.Composable
import com.composables.uikit.components.GhostButton
import com.composables.uikit.components.Text

@Composable
fun GhostButtonExample() {
    GhostButton(onClick = { /* TODO */ }) {
        Text("Ghost Button")
    }
}
```
<!-- AUTOGEN:END -->