carbon-react
Version:
A library of reusable React components for easily building user interfaces.
12 lines (11 loc) • 709 B
TypeScript
import { SpaceProps } from "styled-system";
import { ButtonProps } from "./button.component";
declare const StyledButton: import("styled-components").StyledComponent<"button", any, {
theme: object;
} & SpaceProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & Omit<ButtonProps, "buttonType"> & {
iconOnly?: boolean;
buttonType: Required<ButtonProps>["buttonType"];
}, "theme">;
export declare const StyledButtonSubtext: import("styled-components").StyledComponent<"span", any, {}, never>;
export declare const StyledButtonMainText: import("styled-components").StyledComponent<"span", any, {}, never>;
export default StyledButton;