UNPKG

@brizy/ui

Version:
15 lines (14 loc) 400 B
import { ReactNode } from "react"; import { IconsName } from "../EditorIcon/types"; import { FCC } from "../types"; export type Props = { onClick?: VoidFunction; reverse?: boolean; className?: string; children?: ReactNode; icon?: IconsName; align?: "left" | "center" | "right"; reverseTheme?: boolean; title?: string; }; export declare const LegacyButton: FCC<Props>;