@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
15 lines (14 loc) • 493 B
TypeScript
import { BoxProps } from '../box';
import * as React from 'react';
import * as StyledSystem from 'styled-system';
import { FlexProps } from '../flex';
interface StackPropsBase {
isInline?: boolean;
children?: React.ReactNode[] | React.ReactNode;
spacing?: StyledSystem.MarginProps['margin'];
align?: FlexProps['align'];
justify?: FlexProps['justify'];
shouldWrapChildren?: boolean;
}
export declare type StackProps = StackPropsBase & BoxProps;
export {};