Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1437 Rev 1637
Línea 1... Línea -...
1
import React from 'react'
-
 
2
import { styled } from '@mui/material'
1
import { styled } from '@mui/material'
Línea 3... Línea 2...
3
 
2
 
4
const StyledForm = styled('form')`
3
const Form = styled('form')`
5
  position: relative;
4
  position: relative;
6
  h3 {
5
  h3 {
7
    font-size: 18px;
6
    font-size: 18px;
8
    padding-bottom: 0.5rem;
7
    padding-bottom: 0.5rem;
Línea 26... Línea 25...
26
    margin-top: 0.5rem;
25
    margin-top: 0.5rem;
27
    width: 100%;
26
    width: 100%;
28
  }
27
  }
29
`
28
`
Línea 30... Línea -...
30
 
-
 
31
const Form = ({ children, ...rest }) => {
-
 
32
  return <StyledForm {...rest}>{children}</StyledForm>
-
 
33
}
-
 
34
 
29