UNPKG

@activecollab/components

Version:

ActiveCollab Components

15 lines 484 B
import React, { ReactElement } from "react"; export interface IValueButtonProps { /** Set active state */ active?: boolean; /** Label for value */ label?: string; /** Value */ value: string; /** Icon */ icon?: ReactElement; /** Always show icon */ alwaysShowIcon?: boolean; } export declare const ValueButton: React.ForwardRefExoticComponent<IValueButtonProps & React.RefAttributes<HTMLButtonElement>>; //# sourceMappingURL=ValueButton.d.ts.map