We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bcb4de commit 4b181d7Copy full SHA for 4b181d7
src/components/InfoBanner.tsx
@@ -15,7 +15,6 @@ type InfoBannerProps = {
15
title?: string
16
id?: string
17
className?: string
18
- onClick?: () => void
19
}
20
21
const InfoBanner = ({
@@ -26,7 +25,6 @@ const InfoBanner = ({
26
25
shouldSpaceBetween,
27
title,
28
className,
29
- onClick,
30
...props
31
}: InfoBannerProps) => {
32
const banner = (
@@ -37,7 +35,6 @@ const InfoBanner = ({
37
35
isWarning ? "bg-warning-light" : "bg-primary-low-contrast",
38
36
className
39
)}
40
- onClick={onClick}
41
{...props}
42
>
43
{emoji && (
0 commit comments