carbon-react
Version:
A library of reusable React components for easily building user interfaces.
9 lines (8 loc) • 576 B
TypeScript
import { PaddingProps } from "styled-system";
import { SidebarProps } from "./sidebar.component";
type StyledSidebarProps = Pick<SidebarProps, "onCancel" | "position" | "size" | "width">;
declare const StyledSidebar: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledSidebarProps, "theme">;
declare const StyledSidebarContent: import("styled-components").StyledComponent<"div", any, PaddingProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>, never>;
export { StyledSidebar, StyledSidebarContent };