carbon-react
Version:
A library of reusable React components for easily building user interfaces.
10 lines (9 loc) • 415 B
TypeScript
import { DateInputProps } from "./date.component";
interface StyledDateInputProps extends Pick<DateInputProps, "inputWidth" | "maxWidth" | "labelInline"> {
applyDateRangeStyling?: boolean;
size: Required<DateInputProps>["size"];
}
declare const StyledDateInput: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledDateInputProps, "theme">;
export default StyledDateInput;