mirror of
https://github.com/luxfi/dao.git
synced 2026-07-27 02:51:24 +00:00
- Add packages/wallet with Solana/EVM providers - Add comprehensive DAO governance documentation - Fix gitignore to cover nested node_modules - Update submodule refs
15 lines
446 B
TypeScript
15 lines
446 B
TypeScript
import { FC, ReactElement } from "react";
|
|
export interface PARSInfoCardProps {
|
|
status?: "active" | "closed" | "passed" | "failed";
|
|
statusLabel?: string;
|
|
title?: string;
|
|
content?: string | ReactElement | Element;
|
|
timeRemaining?: string;
|
|
href?: string;
|
|
}
|
|
/**
|
|
* Component for Displaying InfoCard
|
|
*/
|
|
declare const InfoCard: FC<PARSInfoCardProps>;
|
|
export default InfoCard;
|
|
//# sourceMappingURL=InfoCard.d.ts.map
|