Noise Texture

SVG-based noise overlay using feTurbulence filter for film grain and texture effects.

effects basic

Subtle (0.15)

Default (0.3)

Heavy overlay (0.5)

Premium texture

Subtle grain adds depth to any gradient

"use client";

import React from "react";
import { cn } from "@/lib/utils";

interface ComponentProps {
  children: React.ReactNode;
  className?: string;
  variant?: "default" | "primary";
  // ...
}

export function Component({
  children,
  className,
  variant = "default",
  ...props
}: ComponentProps) {
  // Full implementation
  // available with subscription
  return (
    <div className={cn("...", className)}>
      {children}
    </div>
  );
}

Premium Code

Get the complete, production-ready source code for this component.

Sign up free