@hypernetlabs/web-ui
Version:
Web ui react components for hypernet protocol
10 lines • 426 B
TypeScript
import React from "react";
import { ChipProps } from "@material-ui/core";
declare type ChipPropsExtacted = Omit<ChipProps, "color">;
export declare type ChipColorTypes = "blue" | "gray" | "green" | "orange";
export interface GovernanceChipProps extends ChipPropsExtacted {
color?: ChipColorTypes;
}
export declare const GovernanceChip: React.FC<GovernanceChipProps>;
export {};
//# sourceMappingURL=GovernanceChip.d.ts.map