Rev 1256 | Rev 1399 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'import styled from 'styled-components'const StyledForm = styled.form`h3 {font-size: 18px;padding-bottom: 0.5rem;margin-bottom: 1rem;position: relative;width: fit-content;&:before {content: '';position: absolute;background-color: #0961bf;bottom: 0;left: 0;width: 100%;height: 2px;}}input {margin-bottom: 0.5rem;}button {padding-top: 0.5rem;padding-bottom: 0.5rem;margin-top: 0.5rem;width: 100%;}`const Form = ({ children, ...rest }) => {return <StyledForm {...rest}>{children}</StyledForm>}export default Form