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
17 lines
536 B
TypeScript
17 lines
536 B
TypeScript
import { ButtonProps } from "@mui/material";
|
|
import { FC } from "react";
|
|
import { IconName } from "../Icon";
|
|
export interface PARSButtonProps extends ButtonProps {
|
|
template?: "primary" | "secondary" | "tertiary" | "text" | "success" | "feedback";
|
|
icon?: IconName;
|
|
onClick?: any;
|
|
startIconName?: IconName;
|
|
endIconName?: IconName;
|
|
loading?: boolean;
|
|
}
|
|
/**
|
|
* Primary Button Component for UI.
|
|
*/
|
|
declare const Button: FC<PARSButtonProps>;
|
|
export default Button;
|
|
//# sourceMappingURL=Button.d.ts.map
|