Skip to content

Commit

Permalink
style(accordion): styles adjustement to match final specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Powerplex committed Jun 18, 2024
1 parent 9528fac commit 61c9f38
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/components/accordion/src/AccordionItemTrigger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ export const ItemTrigger = forwardRef<HTMLButtonElement, AccordionItemTriggerPro

return (
<Component ref={ref} data-spark-component="accordion-item-trigger" {...mergedProps}>
<div>{children}</div>
<div className="flex items-center gap-lg">{children}</div>
<Icon
className={cx('ml-md shrink-0 rotate-0 transition duration-100 ease-in', {
intent="neutral"
className={cx('shrink-0 rotate-0 transition duration-100 ease-in', {
'rotate-180': isOpen,
})}
size="sm"
Expand Down

0 comments on commit 61c9f38

Please sign in to comment.