UNPKG

@hypernetlabs/web-ui

Version:
19 lines 508 B
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