> For the complete documentation index, see [llms.txt](https://help.smallbuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.smallbuilder.com/smallbuilder-line-items/use-cases/utilizing-the-editors-aura-component.md).

# Utilizing the Editor’s Aura Component

### Adding the component yourself

If you want to call the Line Item Editor from somewhere other than the button, you can insert `<SBLD:LineItemConfigurator />` as shown below.

{% hint style="warning" %}
Currently, only the Aura Component is available.
{% endhint %}

<pre class="language-html"><code class="lang-html">&#x3C;aura:component implements="force:lightningQuickActionWithoutHeader,force:hasRecordId" >   
<strong>    &#x3C;SBLI:LineItemConfigurator 
</strong><strong>        builderId="XXX..." 
</strong><strong>        recordId="{!v.recordId}" />
</strong>&#x3C;/aura:component>
</code></pre>

#### **Aura Component Attributes**

<table><thead><tr><th width="140">Attribute</th><th width="468.33333333333326">Description</th><th>Required</th></tr></thead><tbody><tr><td><strong>recordId</strong></td><td>The record ID of the Parent, as set in the builder.</td><td><mark style="color:red;">✔</mark></td></tr><tr><td><strong>builderId</strong></td><td>The record ID of the builder.</td><td><mark style="color:red;">✔</mark></td></tr></tbody></table>
