@violetprotocol/nudge-components
Version:
Components for Nudge's websites and applications.
16 lines (15 loc) • 338 B
TypeScript
export type OptionBoxProps = {
icon: string;
title: string;
tag?: string;
className?: string;
changeIconColor?: boolean;
disabled?: boolean;
selected?: boolean;
onSelect?: () => void;
};
export declare enum OptionBoxVariant {
DEFAULT = "default",
SELECTED = "selected",
DISABLED = "disabled"
}