Files
88ea2088-8d1b-4a96-a7b1-e54…/src/components/background/PlainBackground.tsx
kudinDmitriyUp c35b1dbcbe Initial commit
2026-03-26 12:20:31 +00: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);