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
436 B
TypeScript
13 lines
436 B
TypeScript
import { ChipProps } from "@mui/material";
|
|
import { ThemeOptions } from "@mui/material/styles";
|
|
import { FC } from "react";
|
|
export interface PARSChipProps extends ChipProps {
|
|
template?: keyof ThemeOptions["colors"]["feedback"] | "purple" | "gray" | "darkGray";
|
|
strong?: boolean;
|
|
}
|
|
/**
|
|
* Component for Displaying Chip
|
|
*/
|
|
declare const Chip: FC<PARSChipProps>;
|
|
export default Chip;
|
|
//# sourceMappingURL=Chip.d.ts.map
|