@focuson/form_components
Version:
Components that can be used by @focuson/forms
12 lines (11 loc) • 544 B
TypeScript
import { LensState } from "@focuson/state";
import { FocusOnContext } from "@focuson/focuson";
export interface WithTextLayoutProps<S, C> {
state: LensState<S, any, C>;
children: JSX.Element | JSX.Element[];
text: string;
holderClassName?: string;
textClassName?: string;
childrenClassName?: string;
}
export declare function WithTextLayout<S, C extends FocusOnContext<S>>({ children, text, holderClassName, textClassName, childrenClassName, state }: WithTextLayoutProps<S, C>): import("react/jsx-runtime").JSX.Element;