UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

19 lines (18 loc) 527 B
/** * @file index.tsx * * @fileoverview InlineError component. */ /// <reference types="react" /> export interface InlineErrorProps { /** * The message to be displayed in the error message. */ message: string; } /** * A message that is shown bellow a input when the input has an error. This message is a way for the user to get immediate feedback on form items * that error for example on blur. */ export declare const InlineError: (props: InlineErrorProps) => JSX.Element; export default InlineError;