@hakit/components
Version:
A series of components to work with @hakit/core
17 lines • 991 B
TypeScript
export interface RowProps 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 row stretch to the height of the parent */
fullHeight?: boolean;
/** should the row stretch to the width of the parent */
fullWidth?: boolean;
}
/** A simple helper component to layout child components in a row, justify/align properties as well as gap are supported */
export declare function Row(props: RowProps): import("@emotion/react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map