XeNote/components/Border.tsx

8 lines
258 B
TypeScript
Raw Normal View History

2024-01-01 03:10:16 +00:00
import type { HTMLAttributes } from "react";
export function Border({ className }: { className?: HTMLAttributes<HTMLDivElement>['className'] }) {
return (
<div className={`flex-1 border-dashed border-slate-500 my-4 border ${className}`}></div>
)
}