Text container

A text container is used to wrap text elements such as paragraphs, headings, and lists to give them vertical spacing.

Use this component for default vertical spacing.

import {TextContainer, Text} from '@shopify/polaris';
import React from 'react';

function TextContainerExample() {
  return (
    <TextContainer>
      <Text variant="headingMd" as="h2">
        Install the Shopify POS App
      </Text>
      <p>
        Shopify POS is the easiest way to sell your products in person.
        Available for iPad, iPhone, and Android.
      </p>
    </TextContainer>
  );
}

Props

Want to help make this feature better? Please share your feedback.

interface TextContainerProps
spacing?'tight' | 'loose'

The amount of vertical spacing children will get between them.

children?React.ReactNode

The content to render in the text container.

Best practices

The closer the spacing, the closer the relationship between content topics. The closeness visually represents the relationship.

  • Use tight spacing to relate content topics to each other
  • Use loose spacing to separate concepts that are independent of each other

  • For more layout variations, or if you’re looking to vertically space components other than text, use Stack.