UNPKG

@withjoy/joykit

Version:

UI Component Library for Joy web

12 lines (11 loc) 322 B
import React from 'react'; import { BaseComponentProps } from '../../common/props'; export interface InlineErrorProps extends BaseComponentProps { message: string; /** A unique identifier for the error */ id: string; } /** * Brief */ export declare const InlineError: React.SFC<InlineErrorProps>;