import Tooltip from '@lume/shared/tooltip'; import { channelReplyAtom } from '@lume/stores/channel'; import { Reply } from 'iconoir-react'; import { useSetAtom } from 'jotai'; export const ReplyButton = ({ id, pubkey, content }: { id: string; pubkey: string; content: string }) => { const setChannelReplyAtom = useSetAtom(channelReplyAtom); const createReply = () => { setChannelReplyAtom({ id: id, pubkey: pubkey, content: content }); }; return ( ); };