carbon-react
Version:
A library of reusable React components for easily building user interfaces.
14 lines (13 loc) • 376 B
TypeScript
interface StyledSearchProps {
name?: string;
isFocused?: boolean;
searchHasValue?: boolean;
searchWidth?: string;
maxWidth?: string;
showSearchButton?: boolean;
variant?: string;
}
declare const StyledSearch: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledSearchProps, "theme">;
export default StyledSearch;