@hypernetlabs/web-ui
Version:
Web ui react components for hypernet protocol
19 lines • 508 B
TypeScript
import React, { ReactNode, CSSProperties } from "react";
export interface IStep {
label: string;
optional?: boolean;
content: any;
}
interface OptionCardProps {
label: string;
value?: string;
iconSrc?: string;
iconComponent?: ReactNode;
onClick?: () => void;
selected: boolean;
style?: CSSProperties;
endComponent?: ReactNode;
}
declare const OptionCard: React.FunctionComponent<OptionCardProps>;
export default OptionCard;
//# sourceMappingURL=OptionCard.d.ts.map