@types/carbon-components-react
Version:
TypeScript definitions for carbon-components-react
10 lines (6 loc) • 315 B
TypeScript
import * as React from "react";
import { SearchProps } from "../Search";
type ExcludedPropKeys = "onBlur" | "onFocus" | "ref";
export interface ExpandableSearchProps extends Omit<SearchProps, ExcludedPropKeys> { }
declare const ExpandableSearch: React.FC<ExpandableSearchProps>;
export default ExpandableSearch;