mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
grafana/ui: Add disabled prop on LinkButton (#19192)
This commit is contained in:
parent
79f8433675
commit
f445369d68
@ -19,7 +19,9 @@ export interface CommonButtonProps {
|
|||||||
className?: string;
|
className?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LinkButtonProps extends CommonButtonProps, AnchorHTMLAttributes<HTMLAnchorElement> {}
|
export interface LinkButtonProps extends CommonButtonProps, AnchorHTMLAttributes<HTMLAnchorElement> {
|
||||||
|
disabled?: boolean;
|
||||||
|
}
|
||||||
export interface ButtonProps extends CommonButtonProps, ButtonHTMLAttributes<HTMLButtonElement> {}
|
export interface ButtonProps extends CommonButtonProps, ButtonHTMLAttributes<HTMLButtonElement> {}
|
||||||
|
|
||||||
interface AbstractButtonProps extends CommonButtonProps, Themeable {
|
interface AbstractButtonProps extends CommonButtonProps, Themeable {
|
||||||
|
Loading…
Reference in New Issue
Block a user