This commit is contained in:
Meliora Ho 2024-02-17 01:32:47 +00:00
parent 280ca20306
commit e85223b288

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
};