Skip to content

Commit

Permalink
fix: added dot notation
Browse files Browse the repository at this point in the history
  • Loading branch information
k-parihar committed Jul 3, 2024
1 parent bf1a92e commit 5b203d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/blade/src/components/DatePicker/DateInput.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,11 @@ const _DatePickerInput = (
// }
marginTop={
// Label present ? add label height : remove label height; align basebox to center
hasLabel
hasLabel && (!isLabelPositionLeft || isMobile)
? isLarge
? makeSize(iconVerticalMargin['noLabelL'])
: makeSize(iconVerticalMargin['noLabelM'])
: makeSize(iconVerticalMargin['noLabel'])
? makeSize(iconVerticalMargin.noLabelL)
: makeSize(iconVerticalMargin.noLabelM)
: makeSize(iconVerticalMargin.noLabel)
}
/>
</BaseBox>
Expand Down

0 comments on commit 5b203d1

Please sign in to comment.