Docs
Diagonal Lines
A diagonal line background component
Installation
Run the following command
It will create a new file called diagonal-lines.tsx
inside the components/animata/background
directory.
mkdir -p components/animata/background && touch components/animata/background/diagonal-lines.tsx
Paste the code
Open the newly created file and paste the following code:
import { cn } from "@/lib/utils";
interface DiagonalLinesProps {
/**
* Color of the line
*/
color?: string;
/**
* Spacing between lines
*/
spacing?: number;
/**
* Content of the component
*/
children?: React.ReactNode;
/**
* Additional classes
*/
className?: string;
}
function Placeholder() {
return (
<div className="flex max-h-full min-h-64 min-w-72 max-w-full items-center justify-center">
<div className="rounded bg-white px-4 py-2">This has diagonal line background</div>
</div>
);
}
export default function DiagonalLines({
color = "#cacaca",
spacing = 10,
children,
className,
}: DiagonalLinesProps) {
return (
<div className={cn("bg-background", className)}>
<div
style={{
backgroundImage: `repeating-linear-gradient(45deg,
${color} 0,
${color} 1px,
transparent 0,
transparent 50%)`,
backgroundSize: `${spacing}px ${spacing}px`,
}}
>
{children ?? <Placeholder />}
</div>
</div>
);
}
Credits
Built by hari
Based on pattern.css by bansal.io