Merge pull request #2 from cssgunc/mel-GEN-14-code-architecture-setup

Removed the bug in Input.tsx
This commit is contained in:
Meliora Ho 2024-02-16 20:39:20 -05:00 committed by GitHub
commit 6d83ed57b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@ import React, { FunctionComponent, InputHTMLAttributes, ReactNode } from 'react'
type InputProps = InputHTMLAttributes<HTMLInputElement> & {
icon?: ReactNode;
title?: ReactNode;
title?:ReactNode;
type?:ReactNode;
placeholder?:ReactNode
};