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
14 lines
399 B
TypeScript
14 lines
399 B
TypeScript
import { FC, ReactElement } from "react";
|
|
export interface PARSArticleCardProps {
|
|
imageSrc: string;
|
|
title: string;
|
|
publishDate?: string;
|
|
content: string | ReactElement | Element;
|
|
href?: string;
|
|
}
|
|
/**
|
|
* Component for Displaying ArticleCard
|
|
*/
|
|
declare const ArticleCard: FC<PARSArticleCardProps>;
|
|
export default ArticleCard;
|
|
//# sourceMappingURL=ArticleCard.d.ts.map
|