ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.135 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/taxhyuvu/nodevenv/public_html/dp_taxhelplines/10/lib/node_modules/@restart/ui/esm/ |
Upload File : |
import * as React from 'react'; export type ButtonType = 'button' | 'reset' | 'submit'; export interface AnchorOptions { href?: string; rel?: string; target?: string; } export interface UseButtonPropsOptions extends AnchorOptions { type?: ButtonType; disabled?: boolean; onClick?: React.EventHandler<React.MouseEvent | React.KeyboardEvent>; tabIndex?: number; tagName?: keyof JSX.IntrinsicElements; role?: React.AriaRole | undefined; } export declare function isTrivialHref(href?: string): boolean; export interface AriaButtonProps { type?: ButtonType | undefined; disabled: boolean | undefined; role?: React.AriaRole; tabIndex?: number | undefined; href?: string | undefined; target?: string | undefined; rel?: string | undefined; 'aria-disabled'?: true | undefined; onClick?: (event: React.MouseEvent | React.KeyboardEvent) => void; onKeyDown?: (event: React.KeyboardEvent) => void; } export interface UseButtonPropsMetadata { tagName: React.ElementType; } export declare function useButtonProps({ tagName, disabled, href, target, rel, role, onClick, tabIndex, type, }: UseButtonPropsOptions): [AriaButtonProps, UseButtonPropsMetadata]; export interface BaseButtonProps { /** * Control the underlying rendered element directly by passing in a valid * component type */ as?: keyof JSX.IntrinsicElements | undefined; /** The disabled state of the button */ disabled?: boolean | undefined; /** Optionally specify an href to render a `<a>` tag styled as a button */ href?: string | undefined; /** Anchor target, when rendering an anchor as a button */ target?: string | undefined; rel?: string | undefined; } export interface ButtonProps extends BaseButtonProps, React.ComponentPropsWithoutRef<'button'> { } declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLElement>>; export default Button;