Props for ExportMatchesButton component.

export interface ExportMatchesButtonProps {
matches: MangaMatchResult[];
disabled?: boolean;
variant?: "default" | "outline" | "ghost";
size?: "default" | "sm" | "lg";
}
interface ExportMatchesButtonProps {
    matches: MangaMatchResult[];
    disabled?: boolean;
    variant?: "default" | "outline" | "ghost";
    size?: "default" | "sm" | "lg";
}

Properties

matches: MangaMatchResult[]

Array of match results to export.

disabled?: boolean

Whether the button is disabled.

variant?: "default" | "outline" | "ghost"

Button style variant.

size?: "default" | "sm" | "lg"

Button size.