fortnite-components
Version:
A library of fortnite components
14 lines (13 loc) • 368 B
TypeScript
/// <reference types="react" />
export interface AchievementCardProps {
name?: string;
image?: string;
description?: string;
time?: string;
topColor?: string;
bottomColor?: string;
imageColor?: string;
topBackground?: string;
bottomBackground?: string;
onClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
}