This commit is contained in:
@@ -5,7 +5,7 @@ import { useMemo, useCallback, useEffect, useState } from 'react';
|
|||||||
const Select = (props) => {
|
const Select = (props) => {
|
||||||
return (
|
return (
|
||||||
<select
|
<select
|
||||||
className={props.className}
|
className={`${props.className || ''} text-xs py-0 px-1 h-6`}
|
||||||
onChange={(e) => props.onChange(e.target.value)}
|
onChange={(e) => props.onChange(e.target.value)}
|
||||||
value={props.value}>
|
value={props.value}>
|
||||||
{props.list.map((element) => (
|
{props.list.map((element) => (
|
||||||
|
|||||||
Reference in New Issue
Block a user