Files
dao/packages/component-library/lib/components/AssetCard/AssetCard.d.ts
T
Zach Kelling a902c1c1c7 feat: add wallet package, docs, LLM.md, and update submodule refs
- Add packages/wallet with Solana/EVM providers
- Add comprehensive DAO governance documentation
- Fix gitignore to cover nested node_modules
- Update submodule refs
2026-02-20 22:15:37 -08:00

21 lines
637 B
TypeScript

import { FC } from "react";
import { PARSTokenStackProps } from "../TokenStack";
export interface PARSAssetCardProps {
token?: PARSTokenStackProps["tokens"];
timeRemaining?: string;
assetValue?: string | number;
assetBalance?: string | number;
pnl?: string | number;
label?: string;
pnlColor?: "green" | "red";
ctaText?: string;
lineThreeLabel?: string;
lineThreeValue?: string | number;
ctaOnClick?: () => void;
}
/**
* Asset Card Component for Wallet.
*/
declare const AssetCard: FC<PARSAssetCardProps>;
export default AssetCard;
//# sourceMappingURL=AssetCard.d.ts.map