Files
f95f7b10-95f0-448e-bd52-e79…/src/components/background/PlainBackground.tsx
2026-06-05 14:11:56 +00:00

20 lines
345 B
TypeScript

"use client";
import { cls } from "@/lib/utils";
interface PlainBackgroundProps {
className?: string;
}
const PlainBackground = ({ className = "" }: PlainBackgroundProps) => {
return (
<div
className={cls("fixed inset-0 -z-10 bg-background", className)}
aria-hidden="true"
/>
);
};
export default PlainBackground;