aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/fake_text_field.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/components/ui/fake_text_field.tsx')
-rw-r--r--packages/website/ts/components/ui/fake_text_field.tsx34
1 files changed, 0 insertions, 34 deletions
diff --git a/packages/website/ts/components/ui/fake_text_field.tsx b/packages/website/ts/components/ui/fake_text_field.tsx
deleted file mode 100644
index 7c3a482a4..000000000
--- a/packages/website/ts/components/ui/fake_text_field.tsx
+++ /dev/null
@@ -1,34 +0,0 @@
-import { Styles } from '@0x/react-shared';
-import * as React from 'react';
-import { InputLabel } from 'ts/components/ui/input_label';
-
-const styles: Styles = {
- hr: {
- borderBottom: '1px solid rgb(224, 224, 224)',
- borderLeft: 'none rgb(224, 224, 224)',
- borderRight: 'none rgb(224, 224, 224)',
- borderTop: 'none rgb(224, 224, 224)',
- bottom: 6,
- boxSizing: 'content-box',
- margin: 0,
- position: 'absolute',
- width: '100%',
- },
-};
-
-interface FakeTextFieldProps {
- label?: React.ReactNode | string;
- children?: any;
-}
-
-export const FakeTextField = (props: FakeTextFieldProps) => {
- return (
- <div className="relative">
- {props.label !== '' && <InputLabel text={props.label} />}
- <div className="pb2" style={{ height: 23 }}>
- {props.children}
- </div>
- <hr style={styles.hr} />
- </div>
- );
-};