Documentation - v0.0.19
    Preparing search index...

    Interface IButtonProps

    interface IButtonProps {
        children?: ReactNode;
        className?: string;
        disabled?: boolean;
        htmlType?: "button" | "reset" | "submit";
        onClick?: MouseEventHandler<HTMLButtonElement>;
        size?: "small" | "middle" | "large";
        style?: CSSProperties;
        type?: "primary";
    }
    Index

    Properties

    children?: ReactNode
    className?: string
    disabled?: boolean

    Whether the button is disabled

    htmlType?: "button" | "reset" | "submit"

    HTML button type attribute

    onClick?: MouseEventHandler<HTMLButtonElement>

    Click handler

    size?: "small" | "middle" | "large"

    Size of the button

    style?: CSSProperties
    type?: "primary"

    Visual variant of the button