@blueprintjs/core
Version:
Core styles & components
22 lines (21 loc) • 648 B
TypeScript
/// <reference types="react" />
import { AbstractPureComponent2 } from "../../common";
import { HTMLDivProps, IProps } from "../../common/props";
export interface IControlGroupProps extends IProps, HTMLDivProps {
/**
* Whether the control group should take up the full width of its container.
*
* @default false
*/
fill?: boolean;
/**
* Whether the control group should appear with vertical styling.
*
* @default false
*/
vertical?: boolean;
}
export declare class ControlGroup extends AbstractPureComponent2<IControlGroupProps> {
static displayName: string;
render(): JSX.Element;
}