carbon-react
Version:
A library of reusable React components for easily building user interfaces.
10 lines (9 loc) • 382 B
TypeScript
import { SimpleSelectProps } from "./simple-select";
export interface StyledSelectProps extends Pick<SimpleSelectProps, "disabled" | "readOnly" | "transparent"> {
hasTextCursor?: boolean;
isOpen: boolean;
}
declare const StyledSelect: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledSelectProps, "theme">;
export default StyledSelect;