carbon-react
Version:
A library of reusable React components for easily building user interfaces.
8 lines (7 loc) • 313 B
TypeScript
import { OptionRowProps } from ".";
interface StyledOptionRowProps extends Pick<OptionRowProps, "hidden"> {
isHighlighted?: boolean;
isDisabled?: boolean;
}
declare const StyledOptionRow: import("styled-components").StyledComponent<"tr", any, StyledOptionRowProps, never>;
export default StyledOptionRow;