UNPKG

1.1 kBTypeScriptView Raw
1import { type HTMLChakraProps, type InferRecipeProps, type JsxStyleProps } from "../../styled-system";
2declare const StyledGroup: import("../..").ChakraComponent<"div", {
3 orientation?: import("../..").ConditionalValue<"horizontal" | "vertical" | undefined>;
4 attached?: import("../..").ConditionalValue<boolean | undefined>;
5 grow?: import("../..").ConditionalValue<boolean | undefined>;
6 stacking?: import("../..").ConditionalValue<"first-on-top" | "last-on-top" | undefined>;
7}>;
8type VariantProps = InferRecipeProps<typeof StyledGroup>;
9export interface GroupProps extends HTMLChakraProps<"div", VariantProps> {
10 /**
11 * The `alignItems` style property
12 */
13 align?: JsxStyleProps["alignItems"];
14 /**
15 * The `justifyContent` style property
16 */
17 justify?: JsxStyleProps["justifyContent"];
18 /**
19 * The `flexWrap` style property
20 */
21 wrap?: JsxStyleProps["flexWrap"];
22}
23export declare const Group: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<GroupProps & import("react").RefAttributes<HTMLDivElement>>>;
24export {};