@activecollab/components
Version:
ActiveCollab Components
13 lines • 588 B
TypeScript
import React, { ComponentPropsWithoutRef } from "react";
import { InputMode, InputSize } from "../Input/types";
import { ITypographyProps } from "../Typography/Typography";
export interface SelectTriggerProps extends ComponentPropsWithoutRef<"button"> {
size?: InputSize;
invalid?: boolean;
endAdornment?: JSX.Element;
open?: boolean;
typographyProps?: ITypographyProps;
mode?: InputMode;
}
export declare const SelectTrigger: React.ForwardRefExoticComponent<SelectTriggerProps & React.RefAttributes<HTMLButtonElement>>;
//# sourceMappingURL=SelectTrigger.d.ts.map