npm -i --save label-float-input
import React from 'react';
import LabelFloatInput from 'label-float-input';
export default class Custom extends React.Component{
render(){
return(
<div className="parent-wrapper">
<LabelFloatInput
value=""
label="Enter your name here"
fontSize="16px"
fontFamily="monospace"
/>
</div>
)
}
}