// @flow import * as React from 'react'; type Props = { children: React.Node, className?: string, /** Title of the inline error. */ title: React.Node, }; const InlineError = ({ children, className = '', title }: Props) => (