UNPKG

@churchapps/apphelper

Version:

Library of helper functions for React and NextJS ChurchApps

15 lines 502 B
import React from "react"; interface Props { ariaLabel?: string; text?: string; icon: string; color?: "inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning"; toolTip?: string; onClick?: (e: React.MouseEvent) => void; href?: string; disabled?: boolean; "data-testid"?: string; } export declare const SmallButton: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>; export {}; //# sourceMappingURL=SmallButton.d.ts.map