Skip to content

Commit

Permalink
feat: change accordion icon (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsladerman authored Jun 6, 2024
1 parent 307b3ec commit f0e3a48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Accordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import styled, { useTheme } from 'styled-components'

import useResizeObserver from '../hooks/useResizeObserver'
import { type UseDisclosureProps, useDisclosure } from '../hooks/useDisclosure'
import { CaretDownIcon } from '../icons'
import { DropdownArrowIcon } from '../icons'

import Card from './Card'
import { AnimatedDiv } from './AnimatedDiv'
Expand All @@ -32,7 +32,7 @@ function AccordionTriggerUnstyled({
<div {...props}>
<div className="label">{children}</div>
<div className="icon">
<CaretDownIcon size={14} />
<DropdownArrowIcon size={14} />
</div>
</div>
)
Expand Down

0 comments on commit f0e3a48

Please sign in to comment.