Skip to content

Commit

Permalink
🎨Design: PrevButton cursor pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
shlee9999 committed Nov 21, 2024
1 parent 94cece2 commit b2e6e26
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Button/PrevButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@ import * as S from './styles'
type PrevButtonProps = IconBaseProps

export default function PrevButton({ ...rest }: PrevButtonProps) {
return <S.PrevButton {...rest}>PrevButton</S.PrevButton>
return (
<S.PrevButton cursor='pointer' {...rest}>
PrevButton
</S.PrevButton>
)
}

0 comments on commit b2e6e26

Please sign in to comment.