Spaces:
Running
Running
File size: 455 Bytes
4fb0c68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
// src/components/Quota.jsx
import React from 'react';
function Quota() {
return (
<div className="border-t border-gray-200 pt-4">
<h2 className="text-xl font-semibold text-gray-700">Your Quota Remaining</h2>
<div className="flex items-center space-x-2 mb-4">
<span className="text-4xl font-bold text-gray-800">0</span>
<span className="text-gray-600">times</span>
</div>
</div>
);
};
export default Quota;
|