File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
libs/ui-react/src/lib/Components Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1+ import {
2+ cn ,
3+ useDisabledContext ,
4+ useMergedRef ,
5+ } from '@ledgerhq/lumen-utils-shared' ;
16import {
27 useRef ,
38 useId ,
49 useState ,
510 useCallback ,
6- ChangeEvent , PointerEvent
11+ ChangeEvent ,
12+ PointerEvent ,
713} from 'react' ;
8- import {
9- cn ,
10- useDisabledContext ,
11- useMergedRef ,
12- } from '@ledgerhq/lumen-utils-shared' ;
1314import { useCommonTranslation } from '../../../i18n' ;
1415import { DeleteCircleFill } from '../../Symbols' ;
1516import { InteractiveIcon } from '../InteractiveIcon' ;
@@ -193,8 +194,8 @@ export const BaseInput = ({
193194 label && 'pt-12 body-2' ,
194195 inputClassName ,
195196 ) }
196- { ...props }
197197 onChange = { handleInput }
198+ { ...props }
198199 />
199200
200201 { label && (
Original file line number Diff line number Diff line change 99} from './Select' ;
1010import { SelectItemData } from './types' ;
1111
12-
1312const figmaSelectItems = [
1413 { value : 'option1' , label : 'Option 1' } ,
1514 { value : 'option2' , label : 'Option 2' } ,
You can’t perform that action at this time.
0 commit comments