We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6954db + bcf0a0e commit 9f3e7ecCopy full SHA for 9f3e7ec
1 file changed
src/ui/ReportTypeSelector/ReportTypeSelector.js
@@ -1,5 +1,6 @@
1
import React, { memo, useMemo } from 'react'
2
import PropTypes from 'prop-types'
3
+import classNames from 'classnames'
4
5
import Select from 'ui/Select'
6
@@ -17,9 +18,9 @@ const ReportTypeSelector = ({
17
18
value={value}
19
items={items}
20
onChange={onChange}
- className={className}
21
type={'Select Report Type'}
22
popoverClassName='bitfinex-select-menu--report-type'
23
+ className={classNames('bitfinex-select--report-type', className)}
24
/>
25
)
26
}
0 commit comments