carbon-react
Version:
A library of reusable React components for easily building user interfaces.
9 lines (8 loc) • 514 B
TypeScript
export interface StyledDismissibleBoxProps {
/** Flag to control whether the thicker left border highlight should be rendered */
hasBorderLeftHighlight?: boolean;
/** Set the base color variant */
variant?: "light" | "dark";
}
declare const StyledDismissibleBox: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../box").BoxProps & import("react").RefAttributes<HTMLDivElement>>, any, StyledDismissibleBoxProps, never>;
export { StyledDismissibleBox };