aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-11-15 06:02:34 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-11-15 06:02:34 +0800
commit504f4d9eb99589b4d9071a6f13cea9dcc11f226d (patch)
treedef28dc7bf08452e086a6efdab2b85c8a5fc60d0 /packages/instant/src/components/ui
parentdaf5719f082f62e46073b1badd141da445b33b09 (diff)
downloaddexon-0x-contracts-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar
dexon-0x-contracts-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.gz
dexon-0x-contracts-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.bz2
dexon-0x-contracts-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.lz
dexon-0x-contracts-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.xz
dexon-0x-contracts-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.zst
dexon-0x-contracts-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.zip
fix(instant): fix tabIndex attribute error
Diffstat (limited to 'packages/instant/src/components/ui')
-rw-r--r--packages/instant/src/components/ui/input.tsx2
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 184f89066..1ea5d8fe1 100644
--- a/packages/instant/src/components/ui/input.tsx
+++ b/packages/instant/src/components/ui/input.tsx
@@ -3,7 +3,7 @@ import * as React from 'react';
import { ColorOption, styled } from '../../style/theme';
export interface InputProps {
- tabindex?: number;
+ tabIndex?: number;
className?: string;
value?: string;
width?: string;