import React from 'react'; /* ───────────────────────────────────────────────────────────────────────── PixelBareInput — unstyled passthrough for escape-hatch composition. ───────────────────────────────────────────────────────────────────────── */ export type PixelBareInputProps = React.InputHTMLAttributes; export const PixelBareInput = React.forwardRef( (props, ref) => , ); PixelBareInput.displayName = 'PixelBareInput';