baseui
Version:
A React Component library implementing the Base design language
37 lines (36 loc) • 986 B
TypeScript
export declare const HIERARCHY: Readonly<{
primary: "primary";
secondary: "secondary";
}>;
export declare const SHAPE: Readonly<{
pill: "pill";
rectangle: "rectangle";
}>;
export declare const COLOR: Readonly<{
accent: "accent";
primary: "primary";
positive: "positive";
negative: "negative";
warning: "warning";
}>;
export declare const PLACEMENT: Readonly<{
topLeft: "topLeft";
topRight: "topRight";
bottomRight: "bottomRight";
bottomLeft: "bottomLeft";
topLeftEdge: "topLeftEdge";
topEdge: "topEdge";
topRightEdge: "topRightEdge";
bottomRightEdge: "bottomRightEdge";
bottomEdge: "bottomEdge";
bottomLeftEdge: "bottomLeftEdge";
leftTopEdge: "leftTopEdge";
rightTopEdge: "rightTopEdge";
rightBottomEdge: "rightBottomEdge";
leftBottomEdge: "leftBottomEdge";
}>;
export declare const ROLE: Readonly<{
badge: "badge";
notificationCircle: "notificationCircle";
hintDot: "hintDot";
}>;