UNPKG

taro-manage-layout

Version:
11 lines (10 loc) 340 B
import React from "react"; export type ButtonProps = { type?: "primary" | "danger" | undefined; ghost?: boolean; children?: string; disabled?: boolean; loading?: boolean; onClick?: () => void; }; export declare const Button: ({ type, ghost, children, disabled, loading, onClick }: ButtonProps) => React.JSX.Element;