UNPKG

@violetprotocol/nudge-components

Version:

Components for Nudge's websites and applications.

13 lines (12 loc) 476 B
import React, { ReactNode } from "react"; import { CardProps as CardMaterialProps } from "@material-tailwind/react"; export interface LandingCardProps extends Omit<CardMaterialProps, "children"> { icon?: string; title?: string; inactive?: boolean; flipContent?: ReactNode; flavourText?: string; withArrow?: boolean; animationSpeed?: 0 | 75 | 100 | 150 | 200 | 300 | 500 | 700 | 1000; } export declare const LandingCard: React.FC<LandingCardProps>;