UNPKG

fortnite-components

Version:
19 lines (18 loc) 400 B
/// <reference types="react" /> export interface PunchCardProps { title?: string; subtitle?: string; time?: string; image?: string; color?: string; bgTop?: string; bgBottom?: string; quests?: Items[]; onClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void; } interface Items { text?: string; max?: number; image?: string; } export {};