diff --git a/src/components/TextInput.tsx b/src/components/TextInput.tsx index a75a357..db08bca 100644 --- a/src/components/TextInput.tsx +++ b/src/components/TextInput.tsx @@ -1,21 +1,37 @@ import classNames from "classnames"; import { omit } from "lodash"; import React from "react"; +import "../index.css"; type Props = { placeholder?: string | undefined, - color?: string |undefined, className?: string | undefined, } & Omit ,"">; export const TextInput = ({ placeholder = undefined, - color = "white", className, ...props } :Props) => { return( - + ); } diff --git a/src/stories/TextInput.stories.tsx b/src/stories/TextInput.stories.tsx index 68795bb..449a39a 100644 --- a/src/stories/TextInput.stories.tsx +++ b/src/stories/TextInput.stories.tsx @@ -12,6 +12,5 @@ const Template: ComponentStory = (args) =>