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 65cef9e commit f204746Copy full SHA for f204746
packages/status-network/src/components/feedback-popover/dropdown-icon.tsx
@@ -1,12 +1,15 @@
1
-const DropdownIcon = () => {
+import type { SVGProps } from 'react'
2
+
3
+const DropdownIcon = (props: SVGProps<SVGSVGElement>) => {
4
return (
5
<svg
6
xmlns="http://www.w3.org/2000/svg"
7
width="12"
8
height="12"
9
fill="none"
- aria-hidden="true"
- focusable="false"
10
+ aria-hidden={true}
11
+ focusable={false}
12
+ {...props}
13
>
14
<g stroke="currentColor" clipPath="url(#a)">
15
<circle cx="6" cy="6" r="5" strokeWidth="1.2" />
0 commit comments