UNPKG

@theguild/components

Version:
20 lines (17 loc) 510 B
import { ReactElement } from 'react'; import { ILink } from '../types/components.mjs'; import 'next/image'; import 'next/link'; import 'react-player'; type CardsColorfulProps = { className?: string; cards: { title: string; description: string; category: string; color: string; link: Omit<ILink, 'children'>; }[]; }; declare const CardsColorful: ({ cards, className }: CardsColorfulProps) => ReactElement; export { CardsColorful, type CardsColorfulProps };