Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
yangwooseong committed Apr 18, 2024
1 parent e496e41 commit dba4daa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bezier-react/src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import styles from './Button.module.scss'

export const BUTTON_TEST_ID = 'bezier-button'

function getTypography(size: ButtonSize) {
function getTypography_test(size: ButtonSize) {
return (
{
xs: '13',
Expand Down Expand Up @@ -147,7 +147,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
{text && (
<Text
className={styles.ButtonText}
typo={getTypography(size)}
typo={getTypography_test(size)}
bold
>
{text}
Expand Down

0 comments on commit dba4daa

Please sign in to comment.