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
13 lines
414 B
TypeScript
13 lines
414 B
TypeScript
import { FC, ReactElement, ReactNode } from "react";
|
|
export interface PARSDataRowProps {
|
|
title: string | ReactElement | Element;
|
|
indented?: boolean;
|
|
id?: string;
|
|
balance?: string | ReactElement | Element;
|
|
isLoading?: boolean;
|
|
children?: ReactNode;
|
|
tooltip?: string;
|
|
}
|
|
declare const DataRow: FC<PARSDataRowProps>;
|
|
export default DataRow;
|
|
//# sourceMappingURL=DataRow.d.ts.map
|