@charkour/react-reactions
Version:
😲 Create custom reaction pickers and counters or use your favorites!
10 lines (9 loc) • 360 B
TypeScript
import React from 'react';
export interface SlackSelectorHeaderTabProps {
onClick: (id: string) => void;
id: string;
icon: string;
active?: boolean;
}
export declare const SlackSelectorHeaderTab: React.ForwardRefExoticComponent<SlackSelectorHeaderTabProps & React.RefAttributes<HTMLDivElement>>;
export default SlackSelectorHeaderTab;