# Strong (/components/typography/strong)



`Strong` marks text as important. It renders a native `strong` element, which conveys importance to
assistive technology, and uses the theme's emphasis font weight.

apps/docs/src/examples/strong/basic.tsx

```tsx
import { Strong } from '@luke-ui/react/strong';
import { Text } from '@luke-ui/react/text';

export default () => {
	return (
		<Text>
			<Strong>Read this part carefully</Strong> before continuing.
		</Text>
	);
};
```

`Strong` stays inline and inherits the surrounding typography. Use `textWrap` to control wrapping.
Use `lineClamp` to constrain longer text.

Use `<Text fontWeight="emphasis">` when text only needs to look bold. `Strong` tells assistive
technology the text matters.

## API [#api]

<ComponentPropsTable
  id="type-table-strong.tsx-StrongProps"
  type="{
  &#x22;id&#x22;: &#x22;strong.tsx-StrongProps&#x22;,
  &#x22;name&#x22;: &#x22;StrongProps&#x22;,
  &#x22;description&#x22;: &#x22;Props for the `Strong` component.&#x22;,
  &#x22;entries&#x22;: [
    {
      &#x22;name&#x22;: &#x22;lineClamp&#x22;,
      &#x22;description&#x22;: &#x22;Clamps text lines. `true` clamps to 1 line; numeric values clamp to 1–5.&#x22;,
      &#x22;tags&#x22;: [],
      &#x22;type&#x22;: &#x22;boolean | 2 | 1 | 3 | 4 | 5 | undefined&#x22;,
      &#x22;simplifiedType&#x22;: &#x22;union&#x22;,
      &#x22;required&#x22;: false,
      &#x22;deprecated&#x22;: false
    },
    {
      &#x22;name&#x22;: &#x22;textWrap&#x22;,
      &#x22;description&#x22;: &#x22;Sets text wrapping behavior.&#x22;,
      &#x22;tags&#x22;: [
        {
          &#x22;name&#x22;: &#x22;default&#x22;,
          &#x22;text&#x22;: &#x22;'default'&#x22;
        }
      ],
      &#x22;type&#x22;: &#x22;\&#x22;balance\&#x22; | \&#x22;default\&#x22; | \&#x22;pretty\&#x22; | undefined&#x22;,
      &#x22;simplifiedType&#x22;: &#x22;union&#x22;,
      &#x22;required&#x22;: false,
      &#x22;deprecated&#x22;: false
    },
    {
      &#x22;deprecated&#x22;: false,
      &#x22;description&#x22;: &#x22;`StrongProps` also accepts compatible DOM and ARIA attributes and event handlers for its rendered element.&#x22;,
      &#x22;name&#x22;: &#x22;__nativePropsForwarding&#x22;,
      &#x22;required&#x22;: true,
      &#x22;simplifiedType&#x22;: &#x22;&#x22;,
      &#x22;tags&#x22;: [],
      &#x22;type&#x22;: &#x22;&#x22;
    }
  ]
}"
/>
