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
10 lines
355 B
TypeScript
10 lines
355 B
TypeScript
import { SvgIconProps } from "@mui/material";
|
|
import { FC } from "react";
|
|
import iconPath from "./iconsLib";
|
|
export interface PARSIconProps extends SvgIconProps {
|
|
name: keyof typeof iconPath;
|
|
}
|
|
declare const Icon: FC<PARSIconProps>;
|
|
export default Icon;
|
|
export declare type IconName = keyof typeof iconPath;
|
|
//# sourceMappingURL=Icon.d.ts.map
|