carbon-react
Version:
A library of reusable React components for easily building user interfaces.
17 lines (16 loc) • 595 B
TypeScript
import { MarginProps } from "styled-system";
import { ValidationProps } from "../../__internal__/validations";
export interface StyledCheckboxProps extends ValidationProps, MarginProps {
disabled?: boolean;
fieldHelpInline?: boolean;
inputWidth?: number | string;
size?: string;
labelSpacing?: 1 | 2;
reverse?: boolean;
adaptiveSpacingSmallScreen?: boolean;
applyNewValidation?: boolean;
}
declare const StyledCheckbox: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledCheckboxProps, "theme">;
export default StyledCheckbox;