Skip to content

Commit f0fa5a4

Browse files
committed
feat: add wrapper panel picker className
1 parent b1e25d0 commit f0fa5a4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/RangePicker.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,10 @@ function InnerRangePicker<DateType>(props: RangePickerProps<DateType>) {
853853

854854
const rangePanel = (
855855
<div
856-
className={`${prefixCls}-range-wrapper`}
856+
className={classNames(
857+
`${prefixCls}-range-wrapper`,
858+
`${prefixCls}-${picker}-range-wrapper`,
859+
)}
857860
style={{ minWidth: popupMinWidth }}
858861
>
859862
<div className={`${prefixCls}-range-arrow`} style={{ left: arrowLeft }} />

0 commit comments

Comments
 (0)