import React from 'react'; import { Icon, IconOptions, ResetButton } from '@squiz/generic-browser-lib'; export type ErrorStateProps = { error: Error; isDisabled?: boolean; onClear: () => void; }; export const ErrorState = ({ error, isDisabled, onClear }: ErrorStateProps) => ( <>
{error.message}
);