Refactor language selector and separator components

This commit is contained in:
2024-09-30 20:23:47 +05:30
parent 2f7850dcd8
commit 8022e3a662
3 changed files with 17 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
function Separator() {
return (
<div className="h-[2px]">
<div className="h-full w-full bg-white rounded-md"></div>
<div className="h-full w-full bg-white dark:bg-primary rounded-md"></div>
</div>
)
}