UNPKG

reactbits-animation

Version:

A comprehensive collection of beautiful, performant React animation components including bounce effects, click sparks, star borders, scroll-triggered animations, and fade transitions.

13 lines 427 B
import { JSX } from "react"; interface PixelCardProps { variant?: "default" | "blue" | "yellow" | "pink"; gap?: number; speed?: number; colors?: string; noFocus?: boolean; className?: string; children: React.ReactNode; } export default function PixelCard({ variant, gap, speed, colors, noFocus, className, children, }: PixelCardProps): JSX.Element; export {}; //# sourceMappingURL=PixelCard.d.ts.map