UNPKG

@als-tp/als-react-ts-ui

Version:

A comprehensive React TypeScript UI component library built with Base UI by ALSInnovation

14 lines 682 B
import { type ButtonHTMLAttributes } from "react"; export type ButtonVariant = "primary" | "secondary" | "success" | "danger" | "warning"; export type ButtonStyle = "full" | "outline" | "ghost" | "empty"; export type ButtonSize = "sm" | "md" | "lg" | "full"; export interface ALSButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> { variant?: ButtonVariant; buttonStyle?: ButtonStyle; size?: ButtonSize; block?: boolean; children?: React.ReactNode; } export declare const ALSButton: import("react").ForwardRefExoticComponent<ALSButtonProps & import("react").RefAttributes<HTMLButtonElement>>; export default ALSButton; //# sourceMappingURL=index.d.ts.map