UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

9 lines (8 loc) 322 B
import React from "react"; interface MagicCardProps extends React.HTMLAttributes<HTMLDivElement> { imageUrl: string; title: string; icon?: React.ReactNode; } export declare const MagicCard: ({ imageUrl, title, icon, className, ...props }: MagicCardProps) => import("react/jsx-runtime").JSX.Element; export {};