Files
3aac8fd4-5394-4e67-ba75-cce…/src/components/background/PlainBackground.tsx
2026-04-05 14:42:23 +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;