Files
AgentGPT/src/components/DottedGridBackground.tsx
Asim Shrestha 375bf82087 🔥 Gradients galore!
2023-04-08 11:08:11 -07:00

21 lines
409 B
TypeScript

import React from "react";
interface DottedGridBackgroundProps {
children: React.ReactNode;
className?: string;
}
const DottedGridBackground = ({
children,
className,
}: DottedGridBackgroundProps) => {
return (
<div className={`${className ? className + " " : ""} background`}>
<div className="lower-gradient" />
{children}
</div>
);
};
export default DottedGridBackground;