UNPKG

@activecollab/components

Version:

ActiveCollab Components

11 lines 492 B
import React, { Ref } from "react"; export interface ICardProps { /** Choose if card should be hoverable or not */ hoverable?: boolean; /** Set the type of the Paper */ variant?: "paper-1" | "paper-2" | "tile-1" | "tile-2"; /** Ref element */ ref?: Ref<HTMLDivElement>; } export declare const Card: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement> & ICardProps, "ref"> & React.RefAttributes<HTMLDivElement>>; //# sourceMappingURL=Card.d.ts.map