UNPKG

@rocket.chat/onboarding-ui

Version:

Set of components and functions for the onboarding experience on Rocket.Chat

10 lines 508 B
import { InputBox } from '@rocket.chat/fuselage'; import type { ComponentProps, ReactNode } from 'react'; type WorkspaceUrlInputProps = Omit<ComponentProps<typeof InputBox>, 'type'> & { addon?: ReactNode; error?: string | undefined; domain: string; }; declare const WorkspaceUrlInput: import("react").ForwardRefExoticComponent<Omit<WorkspaceUrlInputProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>; export default WorkspaceUrlInput; //# sourceMappingURL=WorkspaceUrlInput.d.ts.map