@brizy/ui
Version:
React elements in Brizy style
15 lines (14 loc) • 400 B
TypeScript
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>;