baseui
Version:
A React Component library implementing the Base design language
16 lines (15 loc) • 468 B
TypeScript
export declare const SIZE: Readonly<{
readonly xSmall: "xSmall";
readonly small: "small";
readonly medium: "medium";
readonly large: "large";
}>;
export declare const PLACEMENT: Readonly<{
readonly center: "center";
readonly topLeft: "topLeft";
readonly topCenter: "topCenter";
readonly topRight: "topRight";
readonly bottomLeft: "bottomLeft";
readonly bottomCenter: "bottomCenter";
readonly bottomRight: "bottomRight";
}>;