This component no longer exists. It was in deso-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Editor Emoji Picker
deso-ui/editor-emoji-pickerRemovedBlock
A component for selecting emojis to add to the editor.
Install it
npx shadcn@latest add https://ui.deso.com/r/editor-emoji-picker.jsonSource
1'use client';23import React from 'react';4import dynamic from 'next/dynamic';5import { EmojiStyle, Theme } from 'emoji-picker-react';67const Picker = dynamic(8 () => {9 return import('emoji-picker-react');10 },11 { ssr: false }12);1314export interface EditorEmojiPickerProps {15 onEmojiClick: (emoji: string) => void;16 theme?: Theme;17}1819export function EditorEmojiPicker({20 onEmojiClick,21 theme = Theme.AUTO,22}: EditorEmojiPickerProps) {23 return (24 <Picker25 onEmojiClick={(emojiData) => onEmojiClick(emojiData.emoji)}26 autoFocusSearch={false}27 emojiStyle={EmojiStyle.NATIVE}28 theme={theme}29 />30 );31}
