UNPKG

jb-mobile-input

Version:
21 lines (20 loc) 869 B
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 {};