lune-ui-lib
Version:
Lune UI Components Library
17 lines (16 loc) • 494 B
TypeScript
import '@fontsource/space-grotesk';
import '@fontsource/space-grotesk/700.css';
import { FC, MouseEventHandler } from 'react';
export interface CertificateProps {
id: string;
allocatedAmount: string;
retiredAmount: string;
clientName: string;
createdDate: string;
QRCodeUrl: string;
backgroundGradientHash: number;
updatedDate?: string;
onClick?: MouseEventHandler<HTMLElement>;
}
declare const Certificate: FC<CertificateProps>;
export default Certificate;