crystara-sdk
Version:
Official SDK for Crystara NFT Marketplace
17 lines (16 loc) • 459 B
TypeScript
type BlindBoxInfoProps = {
blindBox: {
name: string;
description: string;
logo: string;
isVerified: boolean;
twitterHandle?: string;
instagramHandle?: string;
websiteUrl?: string;
gameLink?: string;
discordUrl?: string;
telegramUrl?: string;
};
};
export default function BlindBoxInfo({ blindBox }: BlindBoxInfoProps): import("react/jsx-runtime").JSX.Element;
export {};