The last word of this sentence is strong.
Open in Playroom

Note

This component must be nested within a Text or Heading component.

Data attributes

Braid components are very explicit about the properties they accept, which makes providing arbitrary data attributes not possible. Instead, a data prop can be provided as a single collection of data attributes.
<Strong
  data={{ testid: 'strong-1' }}
  // => data-testid="strong-1"
>
  ...
</Strong>

Alternatives