diff --git a/components/Modal/Collection/CollectionInfo.tsx b/components/Modal/Collection/CollectionInfo.tsx index 73198d1..669d05e 100644 --- a/components/Modal/Collection/CollectionInfo.tsx +++ b/components/Modal/Collection/CollectionInfo.tsx @@ -11,6 +11,7 @@ import SubmitButton from "@/components/SubmitButton"; import { HexColorPicker } from "react-colorful"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { toast } from "react-hot-toast"; +import TextInput from "@/components/TextInput"; type Props = { toggleCollectionModal: Function; @@ -65,14 +66,12 @@ export default function CollectionInfo({

- setCollection({ ...collection, name: e.target.value }) } - type="text" - placeholder="e.g. Example Collection" - className="w-full rounded-md p-3 dark:bg-neutral-900 border-solid border outline-none border-sky-100 dark:border-neutral-700 focus:border-sky-300 dark:focus:border-sky-600 duration-100" />
@@ -105,7 +104,7 @@ export default function CollectionInfo({

Description