Skip to content

Commit

Permalink
refactor(ui): Day 컴포넌트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed Jul 15, 2023
1 parent e7a75ab commit fab1412
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/atoms/Day/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ const TEXT_COLOR_TYPE = {
'dayAfter': `${theme.palette.gray_500}`,
}

export const Day = ({ children, variant, leftDown, ...props }: DayPropsType) => {
export const Day = ({ children, variant, leftDown }: DayPropsType) => {
return (
<StyledDay variant={variant} {...props}>
<StyledDay variant={variant}>
<img
src={
variant === 'dayBefore'
Expand Down

0 comments on commit fab1412

Please sign in to comment.