# TallStackUI: Step Items > TallStackUI is a TALL Stack (Tailwind CSS, Alpine.js, Laravel, Livewire) > component library providing 65+ Blade components for building modern web interfaces. A child component of `` that defines a single step's content panel and metadata (title, description, completion state). The content is shown or hidden based on the currently selected step. ## Basic Usage ```blade

Enter your account details here.

Add your profile information.

You are all set!

``` With a custom ID for direct referencing: ```blade

Upload your documents.

``` ## Attributes | Attribute | Type | Default | Description | |-------------|--------------|------------|-------------------------------------------------------------------| | step | int | (required) | The step number identifying this item | | title | string\|null | null | Title displayed in the step indicator | | description | string\|null | null | Description displayed below the title in the step indicator | | completed | bool | false | Marks the step as completed (shows check icon and active styling) | | id | string\|null | null | Optional HTML id attribute for the step panel container | ## Slots | Slot | Description | |-----------|--------------------------------------------------------------| | (default) | Content displayed when this step is the active/selected step |