🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

@bento/text

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bento/text

Text component primitive

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
3
Created
Source

Text

The @bento/text package exports the Text component primitive.

Installation

npm install --save @bento/text

Props

The @bento/text package exports the Text component:

<Source language='tsx' code={ DefaultExample } />

The following properties are available to be used on the Text component:

PropTypeRequiredDescription
align"start" | "center" | "end" | "justify"NoThe alignment of the text.
asstringNoThe HTML element to render the text as.
childrenReactNodeNoThe content to display inside the text.
maxLinesnumberNoThe maximum number of lines to display.
wrap"wrap" | "nowrap" | "balance" | "pretty" | "stable"NoThe wrapping behavior of the text.
slotstringNoA named part of a component that can be customized. This is implemented by the consuming component.
The exposed slot names of a component are available in the components documentation.
slotsRecord<string, object | Function>NoAn object that contains the customizations for the slots.
The main way you interact with the slot system as a consumer.

Examples

As

Setting the as prop allows you to change the HTML tag of the Text component.

<Source language='tsx' code={ AsExample } />

Align

Setting the align prop allows you to change the alignment of the text. You can choose from start, center, end, or justify. start works like left and end works like right. These keywords support RTL languages so you do not need to worry about the language of the text.

<Source language='tsx' code={ AlignExample } />

Max Lines

Setting the maxLines prop allows you to limit the number of lines of text that are displayed using an ellipsis. In browsers that don't support multiline text truncation using line-clamp, the text will be truncated after a single line regardless of the number provided for maxLines.

<Source language='tsx' code={ MaxLinesExample } />

Wrap

Setting the wrap prop allows you to change the wrapping of the text. The values can be wrap, nowrap, balance, pretty, or stable.

  • wrap is the setting that is most commonly used. For most elements you will not to explicitly set this.
  • nowrap should be avoided except in cases where it is important to prevent the text from wrapping.
  • balance is most commonly used for headlines, titles, and labels.
  • pretty is most commonly used for body text.
  • stable is commonly used for editable text, such as textareas.

<Source language='tsx' code={ WrapExample } />

Keywords

accessibility

FAQs

Package last updated on 06 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts