fix(input): add displayName

This commit is contained in:
p-sw 2024-07-12 01:35:27 +09:00
parent 321b47ab3f
commit 0916c483d4

View File

@ -63,6 +63,7 @@ const InputFrame = React.forwardRef<HTMLLabelElement, InputFrameProps>(
);
},
);
InputFrame.displayName = "InputFrame";
interface InputProps
extends VariantProps<typeof inputVariant>,
@ -113,5 +114,6 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>((props, ref) => {
/>
);
});
Input.displayName = "Input";
export { InputFrame, Input };