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
12 lines
395 B
TypeScript
12 lines
395 B
TypeScript
import { FC, ReactElement } from "react";
|
|
export interface PARSDottedDataRowProps {
|
|
title: string | ReactElement | Element;
|
|
value?: string | number | ReactElement | Element;
|
|
bold?: boolean;
|
|
}
|
|
/**
|
|
* Component for Displaying DottedDataRow
|
|
*/
|
|
declare const DottedDataRow: FC<PARSDottedDataRowProps>;
|
|
export default DottedDataRow;
|
|
//# sourceMappingURL=DottedDataRow.d.ts.map
|