aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui/input.tsx
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2018-10-11 09:27:54 +0800
committerGitHub <noreply@github.com>2018-10-11 09:27:54 +0800
commita5a033c359a1a00a144ae0655080b4e6d0e43c88 (patch)
tree50b79c4061c91753030bafa34ff6a60a5c97ea02 /packages/instant/src/components/ui/input.tsx
parent01ccd8ff1a995f6b74f52533bc595cbc428b9eef (diff)
parent50442c3ebbf7a27e49f04a7f0512dcfed9686857 (diff)
downloaddexon-0x-contracts-a5a033c359a1a00a144ae0655080b4e6d0e43c88.tar.gz
dexon-0x-contracts-a5a033c359a1a00a144ae0655080b4e6d0e43c88.tar.zst
dexon-0x-contracts-a5a033c359a1a00a144ae0655080b4e6d0e43c88.zip
Merge pull request #1114 from 0xProject/feature/instant/redux-styles-container
[instant] Add styles and redux to instant
Diffstat (limited to 'packages/instant/src/components/ui/input.tsx')
-rw-r--r--packages/instant/src/components/ui/input.tsx40
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/instant/src/components/ui/input.tsx b/packages/instant/src/components/ui/input.tsx
new file mode 100644
index 000000000..f8c6b6ef6
--- /dev/null
+++ b/packages/instant/src/components/ui/input.tsx
@@ -0,0 +1,40 @@
+import * as React from 'react';
+
+import { ColorOption, styled } from '../../style/theme';
+
+export interface InputProps {
+ className?: string;
+ value?: string;
+ width?: string;
+ fontSize?: string;
+ fontColor?: ColorOption;
+ placeholder?: string;
+ onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
+}
+
+const PlainInput: React.StatelessComponent<InputProps> = ({ value, className, placeholder, onChange }) => (
+ <input className={className} value={value} onChange={onChange} placeholder={placeholder} />
+);
+
+export const Input = styled(PlainInput)`
+ font-size: ${props => props.fontSize};
+ width: ${props => props.width};
+ padding: 0.1em 0em;
+ font-family: 'Inter UI';
+ color: ${props => props.theme[props.fontColor || 'white']};
+ background: transparent;
+ outline: none;
+ border: none;
+ &::placeholder {
+ color: ${props => props.theme[props.fontColor || 'white']};
+ opacity: 0.5;
+ }
+`;
+
+Input.defaultProps = {
+ width: 'auto',
+ fontColor: ColorOption.white,
+ fontSize: '12px',
+};
+
+Input.displayName = 'Input';