function VLabel(props) {
return (
<div className="inline-block align-middle text-xs text-gray-900 mr-2 ">
<label> {props.children}</label>
</div>
);
}
export default VLabel;