finalizing team support
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import clsx from "clsx";
|
||||
import React from "react";
|
||||
|
||||
type Props = {
|
||||
className?: string;
|
||||
};
|
||||
|
||||
function Divider({ className }: Props) {
|
||||
return <hr className={clsx("border-neutral-content border-t", className)} />;
|
||||
}
|
||||
|
||||
export default Divider;
|
||||
Reference in New Issue
Block a user