Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 606 Bytes

File metadata and controls

35 lines (27 loc) · 606 Bytes
id Stack
cssPrefix pf-v6-l-stack
section foundations-and-styles
subsection layouts
propComponents
Stack
StackItem

import './stack.css';

Examples

Basic

import { Stack, StackItem } from '@patternfly/react-core';

<Stack>
  <StackItem>content</StackItem>
  <StackItem isFilled>pf-m-fill</StackItem>
  <StackItem>content</StackItem>
</Stack>;

With gutter

import { Stack, StackItem } from '@patternfly/react-core';

<Stack hasGutter>
  <StackItem>content</StackItem>
  <StackItem isFilled>pf-m-fill</StackItem>
  <StackItem>content</StackItem>
</Stack>;