Files
4f7aabc1-e708-4e49-a97e-623…/src/components/background/PlainBackground.tsx
2026-04-20 00:06:06 +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;