botframework-webchat-component
Version:
React component of botframework-webchat
11 lines • 344 B
TypeScript
import { FC, MouseEventHandler, ReactNode } from 'react';
type IconButtonProps = {
alt?: string;
children?: ReactNode;
className?: string;
disabled?: boolean;
onClick?: MouseEventHandler<HTMLButtonElement>;
};
declare const IconButton: FC<IconButtonProps>;
export default IconButton;
//# sourceMappingURL=IconButton.d.ts.map