This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-auth0/components/Input.tsx
2024-07-07 22:52:00 +02:00

12 lines
269 B
TypeScript

import * as React from 'react';
const Input = React.forwardRef<
HTMLInputElement,
React.InputHTMLAttributes<HTMLInputElement>
>(({ type, ...props }, ref) => {
return <input type={type} ref={ref} {...props} />;
});
Input.displayName = 'Input';
export { Input };