44 lines
1.7 KiB
React
44 lines
1.7 KiB
React
import React from "react";
|
|
import Icons from "../../Helpers/Icons";
|
|
|
|
export default function Preferences() {
|
|
return (
|
|
<div className="login-activity-tab w-full">
|
|
<div className="relative w-full overflow-x-auto sm:rounded-lg">
|
|
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400">
|
|
{/* <thead>
|
|
<tr className="text-base text-thin-light-gray border-b dark:border-[#5356fb29] default-border-b ">
|
|
<td className="py-4 text-center">Channel</td>
|
|
<td className="py-4 text-center">Date</td>
|
|
<td className="py-4 text-center">Location</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr className="bg-white dark:bg-dark-white border-b dark:border-[#5356fb29] hover:bg-gray-50">
|
|
<td className="text-center py-4">
|
|
<div className="flex items-center justify-center">
|
|
<span className="text-base text-dark-gray dark:text-white font-medium whitespace-nowrap px-2">
|
|
Desktop
|
|
</span>
|
|
</div>
|
|
</td>
|
|
<td className="text-center py-4">
|
|
<div className="flex space-x-1 items-center justify-center">
|
|
<span className="text-base text-dark-gray dark:text-white font-medium whitespace-nowrap px-2">
|
|
10-10-2035
|
|
</span>
|
|
</div>
|
|
</td>
|
|
<td className="text-center py-4">
|
|
<span className="text-base text-dark-gray dark:text-white whitespace-nowrap px-2">
|
|
10.0.0.1000
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</tbody> */}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|