Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3232 stevensc 1
/* eslint-disable react/prop-types */
1 www 2
import React from "react";
3
import styled from "styled-components";
4
 
5
const StyledFormErrorFeedback = styled.p`
6
  color: #ff0000;
7
  font-size: 0.9rem;
8
  margin: 0.2rem 0;
9
`;
10
 
11
const FormErrorFeedback = ({ children }) => {
12
  return <StyledFormErrorFeedback>{children}</StyledFormErrorFeedback>;
13
};
14
 
15
export default FormErrorFeedback;