/** @jsx h */ import React from 'react' import h from '../../helpers/h' function Emoji(props) { return React.createElement('img', props.attributes) } function renderNode(props) { switch (props.node.type) { case 'emoji': return Emoji(props) } } export const props = { readOnly: true, renderNode, schema: { inlines: { emoji: { isVoid: true, }, }, }, } export const value = ( ) export const output = `
 
`.trim()