carbon-react
Version:
A library of reusable React components for easily building user interfaces.
14 lines (13 loc) • 393 B
TypeScript
import { BoxProps } from "./box.component";
declare const StyledBox: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & Omit<BoxProps, "borderRadius"> & {
cssProps?: {
color?: string;
opacity?: string;
height?: string;
width?: string;
};
$borderRadius?: BoxProps["borderRadius"];
}, "theme">;
export default StyledBox;