Files
c48a7e6f-931b-4375-9e8e-ae3…/src/components/background/PlainBackground.tsx
2026-04-15 15:17:34 +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;