Skip to content

Commit

Permalink
Merge pull request #2104 from adevinta/input-clear-button-outline
Browse files Browse the repository at this point in the history
fix(input): replace from fill to outline clear button
  • Loading branch information
andresin87 authored May 9, 2024
2 parents 7ea2fb5 + f05d929 commit f88c704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/input/src/InputClearButton.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Icon } from '@spark-ui/icon'
import { DeleteFill } from '@spark-ui/icons/dist/icons/DeleteFill'
import { DeleteOutline } from '@spark-ui/icons/dist/icons/DeleteOutline'
import { cx } from 'class-variance-authority'
import { ComponentPropsWithoutRef, forwardRef, MouseEventHandler } from 'react'

Expand Down Expand Up @@ -39,7 +39,7 @@ const Root = forwardRef<HTMLButtonElement, InputClearButtonProps>(
{...others}
>
<Icon size="sm">
<DeleteFill />
<DeleteOutline />
</Icon>
</button>
)
Expand Down

0 comments on commit f88c704

Please sign in to comment.