UNPKG

@indahash/emoji-picker-react

Version:

Emoji Picker component for React Applications on the web

13 lines (12 loc) 407 B
/// <reference types="react" /> import './SkinTonePicker.css'; declare type Props = { direction?: SkinTonePickerDirection; }; export declare function SkinTonePickerMenu(): JSX.Element; export declare function SkinTonePicker({ direction }: Props): JSX.Element | null; export declare enum SkinTonePickerDirection { VERTICAL = "epr-vertical", HORIZONTAL = "epr-horizontal" } export {};