Files
dao/packages/component-library/lib/components/Icon/Icon.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

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