Skip to content

Commit f0e3a48

Browse files
authored
feat: change accordion icon (#604)
1 parent 307b3ec commit f0e3a48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Accordion.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import styled, { useTheme } from 'styled-components'
1515

1616
import useResizeObserver from '../hooks/useResizeObserver'
1717
import { type UseDisclosureProps, useDisclosure } from '../hooks/useDisclosure'
18-
import { CaretDownIcon } from '../icons'
18+
import { DropdownArrowIcon } from '../icons'
1919

2020
import Card from './Card'
2121
import { AnimatedDiv } from './AnimatedDiv'
@@ -32,7 +32,7 @@ function AccordionTriggerUnstyled({
3232
<div {...props}>
3333
<div className="label">{children}</div>
3434
<div className="icon">
35-
<CaretDownIcon size={14} />
35+
<DropdownArrowIcon size={14} />
3636
</div>
3737
</div>
3838
)

0 commit comments

Comments
 (0)