Added personal image to the pages
This commit is contained in:
@@ -22,6 +22,7 @@ export interface InputCompOneProps {
|
||||
selectClass?: string;
|
||||
parentSelectClass?: string;
|
||||
parentClass?: string;
|
||||
maxLength?: number;
|
||||
}
|
||||
|
||||
const InputCompOne = forwardRef<HTMLInputElement, InputCompOneProps>(
|
||||
@@ -47,6 +48,7 @@ const InputCompOne = forwardRef<HTMLInputElement, InputCompOneProps>(
|
||||
selectClass,
|
||||
parentSelectClass,
|
||||
parentClass,
|
||||
maxLength,
|
||||
},
|
||||
forwardedRef
|
||||
) => {
|
||||
@@ -70,6 +72,7 @@ const InputCompOne = forwardRef<HTMLInputElement, InputCompOneProps>(
|
||||
tabIndex={tabIndex}
|
||||
ref={forwardedRef}
|
||||
className={inputClass}
|
||||
maxLength={maxLength}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user