9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
|
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;
|