Repository URL to install this package:
Version:
0.9.5 ▾
|
import React from 'react'
export const GroupElementsWrap = styled.div.attrs({
className: props => props.className || '',
}) ``
/**
* @todo nowrap React.Fragment
*/
export const InputWrap = props => <div className={'input-wrap'} {...props} />
// export const Input = props => <input {...props} ref={props.setRef} />
export const InputElement = props => {
const { setRef, ...remainingProps } = props
return <input ref={setRef} {...remainingProps} />
}