mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-29 00:59:37 +07:00
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import React from "react";
|
|
import { cn } from "~/lib/utils";
|
|
|
|
type Props = React.ComponentProps<"hr">;
|
|
|
|
const Divider = ({ className, ...props }: Props) => {
|
|
return <hr className={cn("border-white/20", className)} {...props} />;
|
|
};
|
|
|
|
export default Divider;
|