@ecoba-vn/tender-feature
Version:
12 lines (11 loc) • 355 B
TypeScript
/// <reference types="react" />
import { IconProp } from "@fortawesome/fontawesome-svg-core";
declare type Props = {
tooltip?: string;
icon: IconProp;
text?: string;
disable?: boolean;
onClick?: () => void;
};
export default function ToolbarButton({ tooltip, icon, text, disable, onClick, }: Props): JSX.Element;
export {};