import React from 'react'; import Emoji from 'soapbox/components/ui/emoji/emoji'; interface IEmojiGraphic { emoji: string; } /** Large emoji with a background for display purposes (eg breaking up a page). */ const EmojiGraphic: React.FC = ({ emoji }) => { return (
); }; export default EmojiGraphic;