1
0
mirror of https://github.com/Infisical/infisical.git synced 2025-03-29 22:02:57 +00:00

Fix: Moved Divider to v2

This commit is contained in:
Daniel Hougaard
2024-04-09 00:20:18 -07:00
parent a579598b6d
commit 9c2591f3a6

@ -1,15 +0,0 @@
import { twMerge } from "tailwind-merge";
interface IProps {
className?: string;
}
const Divider = ({ className }: IProps): JSX.Element => {
return (
<div className={twMerge("flex items-center px-2 opacity-50", className)}>
<div aria-hidden="true" className="h-5 w-full grow border border-t border-mineshaft-200" />
</div>
);
};
export default Divider;