/// export interface IConditionalRenderProps { /** * The condition controlling whether children are rendered. If a function is provided it is called and the resulting value is used to determinge if the condition is true or false. */ condition: any; /** * An optional render prop to call if the condition is false. If not specified nothing is rendered if the condition is false. * @default null */ conditionNotMetRender?: () => (React.ReactNode | null); }