@feelback/react
Version:
Use Feelback service within your React website
12 lines (11 loc) • 424 B
TypeScript
import type { FeelbackValueIcon } from "../types";
export type ButtonValueProps = Readonly<{
isActive?: boolean;
isDisabled?: boolean;
title?: string;
label?: string;
count?: false | number;
icon?: FeelbackValueIcon | readonly [FeelbackValueIcon, FeelbackValueIcon];
onClick?: () => void;
}>;
export declare function ButtonValue(props: ButtonValueProps): import("react/jsx-runtime").JSX.Element;