jb-mobile-input
Version:
mobile input web component
21 lines (20 loc) • 869 B
TypeScript
import React, { DetailedHTMLProps, HTMLAttributes } from 'react';
import 'jb-mobile-input';
import { BaseProps } from 'jb-input/react';
import { type JBMobileInputWebComponent } from 'jb-mobile-input';
interface JBMobileInputType extends DetailedHTMLProps<HTMLAttributes<JBMobileInputWebComponent>, JBMobileInputWebComponent> {
class?: string;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
'jb-mobile-input': JBMobileInputType;
}
}
}
export declare const JBMobileInput: React.ForwardRefExoticComponent<import("jb-input/react").JBInputEvents<JBMobileInputWebComponent> & import("jb-input/react").JBInputAttributes & {
className?: string;
children?: React.ReactNode | React.ReactNode[];
} & React.RefAttributes<unknown>>;
export type Props = BaseProps<JBMobileInputWebComponent> & {};
export {};