@bao-ui/react
Version:
Styled React components built on Base UI primitives
6 lines • 394 B
TypeScript
import * as React from 'react';
import { Input as BaseInput } from '@base-ui-components/react/input';
export type InputProps = React.ComponentPropsWithoutRef<typeof BaseInput>;
declare const Input: React.ForwardRefExoticComponent<Omit<BaseInput.Props & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
export { Input };
//# sourceMappingURL=Input.d.ts.map