UNPKG

emoji-picker-react

Version:

Emoji Picker component for React Applications on the web

12 lines (11 loc) 420 B
/// <reference types="react" /> import { CategoryConfig } from '../../config/categoryConfig'; declare type Props = { isActiveCategory: boolean; category: string; allowNavigation: boolean; onClick: () => void; categoryConfig: CategoryConfig; }; export declare function CategoryButton({ isActiveCategory, category, allowNavigation, categoryConfig, onClick }: Props): JSX.Element; export {};