Skip to content

Commit f204746

Browse files
committed
update correct dropdown icon
1 parent 65cef9e commit f204746

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/status-network/src/components/feedback-popover/dropdown-icon.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
const DropdownIcon = () => {
1+
import type { SVGProps } from 'react'
2+
3+
const DropdownIcon = (props: SVGProps<SVGSVGElement>) => {
24
return (
35
<svg
46
xmlns="http://www.w3.org/2000/svg"
57
width="12"
68
height="12"
79
fill="none"
8-
aria-hidden="true"
9-
focusable="false"
10+
aria-hidden={true}
11+
focusable={false}
12+
{...props}
1013
>
1114
<g stroke="currentColor" clipPath="url(#a)">
1215
<circle cx="6" cy="6" r="5" strokeWidth="1.2" />

0 commit comments

Comments
 (0)