UNPKG

scratchcard-reactjs

Version:

**Interactive scratch card functionality made simple for your app! ✨**

10 lines (9 loc) 280 B
import React from "react"; import "../styles/card.css"; type PropsType = { data: any; variant?: string; handleCoverScratched?: () => void; }; declare const ScratchCard: ({ data, variant, handleCoverScratched }: PropsType) => React.JSX.Element; export { ScratchCard };