> For the complete documentation index, see [llms.txt](https://docs.navigaglobal.com/writer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.navigaglobal.com/writer/6.5.0/api-reference/uicomponents/uibyline.md).

# UIByline

Author byline component

**Since**: 6.0.0 (3.8.0)

## Properties

| Name              | Type       | Description                                                             |
| ----------------- | ---------- | ----------------------------------------------------------------------- |
| node              | `Node`     | **Required** - The substance node, which requires an "authors"-property |
| bylineSearch      | `boolean`  | **Required** - If search should be enabled                              |
| isolatedNodeState | `string`   | **Required** - The isolatedNodeState property from the parent Component |
| onClose           | `function` | Callback when closing                                                   |

## Example

```javascript
import {UIByline} from 'writer'

render($$) {
    const el = $$('div')

    return el.append(
        $$(UIByline, {
            node: this.props.node,
            bylineSearch: true,
            isolatedNodeState: this.props.isolatedNodeState
        })
    )
}
```
