|
@@ -254,11 +254,8 @@ export function Select(
|
|
|
) {
|
|
|
const { className, children, ...otherProps } = props;
|
|
|
return (
|
|
|
- <div className={styles["select-with-icon"]}>
|
|
|
- <select
|
|
|
- className={`${styles["select-with-icon-select"]} ${className}`}
|
|
|
- {...otherProps}
|
|
|
- >
|
|
|
+ <div className={`${styles["select-with-icon"]} ${className}`}>
|
|
|
+ <select className={styles["select-with-icon-select"]} {...otherProps}>
|
|
|
{children}
|
|
|
</select>
|
|
|
<DownIcon className={styles["select-with-icon-icon"]} />
|