fix: EmojiPicker theme

This commit is contained in:
IlyaDoronin 2023-09-21 14:37:10 +03:00
parent b0d79e43b9
commit cf6109eb4e
2 changed files with 2 additions and 2 deletions

@ -167,7 +167,7 @@ export const AnswerItem = ({
}} }}
sx={{ sx={{
".MuiPaper-root.MuiPaper-rounded": { ".MuiPaper-root.MuiPaper-rounded": {
background: "transparent", borderRadius: "10px",
}, },
}} }}
> >

@ -15,5 +15,5 @@ type EmojiPickerProps = {
}; };
export const EmojiPicker = ({ onEmojiSelect }: EmojiPickerProps) => ( export const EmojiPicker = ({ onEmojiSelect }: EmojiPickerProps) => (
<EmojiPickerOriginal onEmojiSelect={onEmojiSelect} /> <EmojiPickerOriginal onEmojiSelect={onEmojiSelect} theme="light" />
); );