Files
6a7e46d9-24e6-4695-b46e-ccd…/src/components/background/PlainBackground.tsx
vitalijmulika 854deef059 Initial commit
2025-12-19 14:16:08 +02:00

22 lines
430 B
TypeScript

"use client";
import { memo } from "react";
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"
/>
);
};
PlainBackground.displayName = "PlainBackground";
export default memo(PlainBackground);