src/Console/Components/New-ActionBar.psm1

<#
.SYNOPSIS
    TODO Renders an action bar.
.INPUTS
    The child content.
.OUTPUTS
    The rendered component.
#>

function New-ActionBar {
    [CmdletBinding()]
    [OutputType([string])]
    param (
        # The child content.
        [Parameter(Position = 0, ValueFromPipeline, ValueFromPipelineByPropertyName)]
        [object] $Content
    )

    process {
        tag action-bar $Content
    }
}