We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eed6131 commit b81cbe6Copy full SHA for b81cbe6
lib/ui/select.js
@@ -38,7 +38,16 @@ const Select = ({
38
39
return (
40
<>
41
- <button title={switch_ ? titles[1] : titles[0]} type='button' className='bb cw sb scp' onClick={setSwitch(!switch_)}>{<GoogleFonts_Icons_ArrowDropUp id="arw" />}<img src={items[id][1]} title={items[id][0]} alt="" className='fi r2px ow' />{items[id][0]}</button>
+ <button
42
+ title={switch_ ? titles[1] : titles[0]}
43
+ type='button'
44
+ className='bb cw sb scp'
45
+ onClick={() => setSwitch(!switch_)}
46
+ >
47
+ <GoogleFonts_Icons_ArrowDropUp id="arw" />
48
+ <img src={items[id][1]} title={items[id][0]} alt="" className='fi r2px ow' />
49
+ {items[id][0]}
50
+ </button>
51
{switch_ ? <div className='du'>items</div> : <div />}
52
</>
53
)
0 commit comments