Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1459 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1459 Rev 1605
Línea 1... Línea -...
1
import React from 'react'
-
 
2
import styled from 'styled-components'
1
import { styled } from '@mui/material'
Línea 3... Línea 2...
3
 
2
 
4
const StyledFormErrorFeedback = styled.p`
3
const FormErrorFeedback = styled('p')`
5
  color: #ff0000;
4
  color: #ff0000;
6
  font-size: 0.9rem;
5
  font-size: 0.9rem;
7
  margin: 0.2rem 0;
6
  margin: 0.2rem 0;
Línea 8... Línea -...
8
`
-
 
9
 
-
 
10
const FormErrorFeedback = ({ children }) => {
-
 
11
  return <StyledFormErrorFeedback>{children}</StyledFormErrorFeedback>
-
 
12
}
7
`