diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-12-14 04:45:38 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-12-14 04:45:38 +0800 |
commit | 33c6e40b7026858be52f804c726b9a1ef41647d3 (patch) | |
tree | cd7b796c499f1e652cb2db550b67849eade6da1b /packages/instant/src/components/ui | |
parent | 6e54514013702fa8ca9a6b69c04f4d2468cd8b66 (diff) | |
download | dexon-0x-contracts-33c6e40b7026858be52f804c726b9a1ef41647d3.tar.gz dexon-0x-contracts-33c6e40b7026858be52f804c726b9a1ef41647d3.tar.zst dexon-0x-contracts-33c6e40b7026858be52f804c726b9a1ef41647d3.zip |
simplify scaling input logic
Diffstat (limited to 'packages/instant/src/components/ui')
-rw-r--r-- | packages/instant/src/components/ui/input.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/ui/input.tsx b/packages/instant/src/components/ui/input.tsx index 1e476bed3..697bfaf0f 100644 --- a/packages/instant/src/components/ui/input.tsx +++ b/packages/instant/src/components/ui/input.tsx @@ -2,7 +2,7 @@ import * as React from 'react'; import { ColorOption, styled } from '../../style/theme'; -export interface InputProps { +export interface InputProps extends React.HTMLAttributes<HTMLInputElement> { tabIndex?: number; className?: string; value?: string; |