Skip to content

Commit

Permalink
feat(button): clean dirty in button, make dirty in help
Browse files Browse the repository at this point in the history
  • Loading branch information
yangwooseong committed Apr 30, 2024
1 parent da707a6 commit 09b420d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/bezier-react/src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
[onClick, disabled]
)


return (
<Comp
// eslint-disable-next-line react/button-has-type
Expand Down
4 changes: 2 additions & 2 deletions packages/bezier-react/src/components/Help/Help.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { forwardRef } from 'react'

import { AllIcon } from '@channel.io/bezier-icons'
import { HelpFilledIcon } from '@channel.io/bezier-icons'

import { isEmpty } from '~/src/utils/type'

Expand Down Expand Up @@ -31,7 +31,7 @@ export const Help = forwardRef<HTMLDivElement, HelpProps>(function Help(
<div className={styles.Help}>
<Icon
className={styles.Icon}
source={AllIcon}
source={HelpFilledIcon}
size="xs"
color="txt-black-dark"
data-testid={HELP_TEST_ID}
Expand Down

0 comments on commit 09b420d

Please sign in to comment.