Skip to content

Commit 9d8a76b

Browse files
committed
fix prop types
1 parent 7698329 commit 9d8a76b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Emoji.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React from "react"
22
import { Box, HTMLChakraProps } from "@chakra-ui/react"
3-
import { Twemoji, Props } from "react-emoji-render"
3+
import { Twemoji, BaseProps } from "react-emoji-render"
44

55
import { IS_DEV } from "../utils/env"
66

7-
export interface IProps extends HTMLChakraProps<"span">, Props {}
7+
export interface IProps extends HTMLChakraProps<"span">, BaseProps {}
88

99
const Emoji = (props: IProps) => {
1010
return (

0 commit comments

Comments
 (0)