@redocly/graphql-docs
Version:
Redocly GraphQL docs
17 lines (16 loc) • 886 B
TypeScript
import type { CSSProperties } from 'react';
export interface BoxSpacingProps {
gutter?: number;
rowGap?: number;
}
export declare const BoxGap: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<BoxSpacingProps, any>>;
export interface BoxProps extends BoxSpacingProps {
direction?: CSSProperties['flexDirection'];
basis?: CSSProperties['flexBasis'];
wrap?: CSSProperties['flexWrap'];
align?: CSSProperties['alignItems'];
justify?: CSSProperties['justifyContent'];
}
export declare const BoxCss: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<BoxProps, any>>;
export declare const Box: import("styled-components").StyledComponent<"div", any, BoxProps, never>;
export declare const InlineBox: import("styled-components").StyledComponent<"div", any, BoxProps, never>;