UNPKG

@hakit/components

Version:
17 lines 1.01 kB
export interface ColumnProps extends React.ComponentPropsWithoutRef<"div"> { /** standard flex css properties for align-items, @default center */ alignItems?: React.CSSProperties["alignItems"]; /** standard flex css properties for justify-content, @default center */ justifyContent?: React.CSSProperties["justifyContent"]; /** standard flex css properties for flex-wrap property, @default wrap */ wrap?: React.CSSProperties["flexWrap"]; /** standard css gap property values, @default undefined */ gap?: React.CSSProperties["gap"]; /** should the column stretch to the height of the parent */ fullHeight?: boolean; /** should the column stretch to the width of the parent */ fullWidth?: boolean; } /** A simple helper component to layout child components in a column, justify/align properties as well as gap are supported */ export declare function Column(props: ColumnProps): import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map