Skip to content

Commit ac86ccf

Browse files
fix
1 parent b81cbe6 commit ac86ccf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/ui/select.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ SOFTWARE.
2626

2727
import { useEffect, useState } from 'react';
2828

29-
const GoogleFonts_Icons_ArrowDropUp = <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3"><path d="M328-400q-9 0-14.5-6t-5.5-14q0-2 6-14l145-145q5-5 10-7t11-2q6 0 11 2t10 7l145 145q3 3 4.5 6.5t1.5 7.5q0 8-5.5 14t-14.5 6H328Z"></path></svg>
29+
const GoogleFonts_Icons_ArrowDropUp = (props) => (
30+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3" {...props}>
31+
<path d="M328-400q-9 0-14.5-6t-5.5-14q0-2 6-14l145-145q5-5 10-7t11-2q6 0 11 2t10 7l145 145q3 3 4.5 6.5t1.5 7.5q0 8-5.5 14t-14.5 6H328Z" />
32+
</svg>
33+
)
3034

3135
const Select = ({
3236
titles,

0 commit comments

Comments
 (0)