@cbpds/web-components
Version:
Web components for the CBP Design System.
15 lines (14 loc) • 446 B
TypeScript
export declare class CbpCard {
host: HTMLElement;
color: "info" | "success" | "warning" | "danger";
variant: "banner" | "decision" | "flag";
interactive: "clickable" | "selectable" | "radio";
href: string;
disabled: boolean;
stretch: boolean;
sx: any;
context: "light-inverts" | "light-always" | "dark-inverts" | "dark-always";
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}