fortnite-components
Version:
A library of fortnite components
19 lines (18 loc) • 400 B
TypeScript
/// <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 {};