Files
72425e26-8643-4da2-bba2-d9e…/src/components/background/PlainBackground.tsx
2026-04-20 08:14:08 +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;