UNPKG

@focuson/form_components

Version:

Components that can be used by @focuson/forms

8 lines (7 loc) 245 B
export interface GuardProps { value: any; cond: string[] | boolean; children: JSX.Element; height?: string; } export declare function Guard({ value, cond, children, height }: GuardProps): import("react/jsx-runtime").JSX.Element;