package.src.layouts.Stack.Stack.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react-core Show documentation
Show all versions of react-core Show documentation
This library provides a set of common React components for use with the PatternFly reference implementation.
The newest version!
import * as React from 'react';
import styles from '@patternfly/react-styles/css/layouts/Stack/stack';
import { css } from '@patternfly/react-styles';
export interface StackProps extends React.HTMLProps {
/** Adds space between children. */
hasGutter?: boolean;
/** content rendered inside the Stack layout */
children?: React.ReactNode;
/** additional classes added to the Stack layout */
className?: string;
/** Sets the base component to render. defaults to div */
component?: React.ReactNode;
}
export const Stack: React.FunctionComponent = ({
hasGutter = false,
className = '',
children = null,
component = 'div',
...props
}: StackProps) => {
const Component = component as any;
return (
{children}
);
};
Stack.displayName = 'Stack';