import styled from '@emotion/styled' const StyledInput = styled.input` padding-bottom: 1px; ` interface InputProps { type: string value: any onChange: (e) => void className?: string disabled?: boolean error?: boolean [x: string]: any } const Group = ({ children, className = '' }) => { return