aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/modals/input.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/components/modals/input.tsx')
-rw-r--r--packages/website/ts/@next/components/modals/input.tsx6
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/website/ts/@next/components/modals/input.tsx b/packages/website/ts/@next/components/modals/input.tsx
index c6f0f8c36..33dfb1146 100644
--- a/packages/website/ts/@next/components/modals/input.tsx
+++ b/packages/website/ts/@next/components/modals/input.tsx
@@ -1,8 +1,6 @@
import * as React from 'react';
import styled from 'styled-components';
-import { colors } from 'ts/style/colors';
-
export enum InputWidth {
Half,
Full,
@@ -15,10 +13,6 @@ interface InputProps {
type?: string;
}
-interface LabelProps {
- string: boolean;
-}
-
export const Input = React.forwardRef((props: InputProps, ref) => {
const { name, label, type } = props;
const id = `input-${name}`;