diff --git a/src/components/ui/alert.tsx b/src/components/ui/alert.tsx index 503117fba03..7a570acc5f9 100644 --- a/src/components/ui/alert.tsx +++ b/src/components/ui/alert.tsx @@ -94,18 +94,15 @@ const AlertCloseButton = React.forwardRef< )) AlertCloseButton.displayName = "AlertCloseButton" -const AlertEmoji = React.forwardRef( - ({ className, ...props }) => ( - - ) +const AlertEmoji = ({ className, ...props }: EmojiProps) => ( + ) -AlertEmoji.displayName = "AlertEmoji" export { Alert,