import { ExclamationIcon } from '@heroicons/react/outline'; interface Props { value: string; message?: string; } export function InlineError({ value, message }: Props) { return ( {value} ); }