UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

11 lines (10 loc) 422 B
import React, { MouseEvent, ReactNode } from 'react'; import './index.scss'; export interface FeedbackIconButtonProps { children: ReactNode; isSelected: boolean; onClick?: (e: MouseEvent<HTMLButtonElement>) => void; disabled?: boolean; } declare const FeedbackIconButton: React.ForwardRefExoticComponent<FeedbackIconButtonProps & React.RefAttributes<HTMLButtonElement>>; export default FeedbackIconButton;