blob: 97972145a876943e992fc8889b52d165f13e2230 [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import React from 'react';
import styled from 'styled-components';
const Alert = styled.div`
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
border-radius: 4px;
padding: 12px 40px 12px 16px;
font-size: 0.875rem;
position: relative;
line-height: 1.5;
`;
const DismissButton = styled.button`
position: absolute;
top: 8px;
right: 10px;
background: none;
border: none;
font-size: 1.1rem;
color: #721c24;
cursor: pointer;
line-height: 1;
padding: 0 4px;
&:hover {
opacity: 0.7;
}
`;
interface Props {
message: string;
onDismiss: () => void;
}
const ErrorAlert = ({ message, onDismiss }: Props) => (
<Alert role="alert">
<strong>Translation error:</strong> {message}
<DismissButton onClick={onDismiss} aria-label="Dismiss error">
&times;
</DismissButton>
</Alert>
);
export default ErrorAlert;