# TallStackUI: Kbd
> TallStackUI is a TALL Stack (Tailwind CSS, Alpine.js, Laravel, Livewire)
> component library providing 65+ Blade components for building modern web interfaces.
A keyboard key indicator component for displaying keyboard shortcuts or key references. Supports multiple sizes, borderless mode, and optional tooltips.
## Basic Usage
```blade
```
```blade
+
```
```blade
```
## Attributes
| Attribute | Type | Default | Description |
|------------|--------------|---------|--------------------------------------------------------|
| text | string\|null | null | Key label text |
| xs | bool | null | Extra-small size |
| sm | bool | null | Small size (default) |
| md | bool | null | Medium size |
| lg | bool | null | Large size |
| borderless | bool | false | Removes the border and shadow for a minimal appearance |
| tooltip | string\|null | null | Tooltip text shown on hover |
## Slots
| Slot | Description |
|-----------|--------------------------------------------------|
| (default) | Custom content, used when `text` is not provided |
## Soft Customization
Soft customization allows you to override default Tailwind CSS classes used by this component at runtime, either through a service provider or scoped per-instance.
### Customization
```php
TallStackUi::customize()
->kbd()
->block('wrapper.class', 'your-tailwind-classes');
```
### Available Blocks
| Block Name | Purpose |
|------------------|-------------------------------------------------------------------------------|
| wrapper.class | Base key styles (inline-flex, rounded, border, shadow, colors) |
| wrapper.sizes.xs | Extra-small text and padding |
| wrapper.sizes.sm | Small text and padding |
| wrapper.sizes.md | Medium text and padding |
| wrapper.sizes.lg | Large text and padding |
| borderless | Styles applied when borderless mode is active (transparent border, no shadow) |