Files
e2b229c9-abb3-4eca-aa3b-cef…/src/components/background/PlainBackground.tsx
vitalijmulika bbbfa85304 Initial commit
2026-03-20 12:51:57 +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);