diff --git a/packages/react/components/Input.tsx b/packages/react/components/Input.tsx index 6541e04..69a81fe 100644 --- a/packages/react/components/Input.tsx +++ b/packages/react/components/Input.tsx @@ -63,6 +63,7 @@ const InputFrame = React.forwardRef( ); }, ); +InputFrame.displayName = "InputFrame"; interface InputProps extends VariantProps, @@ -113,5 +114,6 @@ const Input = React.forwardRef((props, ref) => { /> ); }); +Input.displayName = "Input"; export { InputFrame, Input };