mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -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;
|
||||
}
|
||||
|
||||
export interface LinkButtonProps extends CommonButtonProps, AnchorHTMLAttributes<HTMLAnchorElement> {}
|
||||
export interface LinkButtonProps extends CommonButtonProps, AnchorHTMLAttributes<HTMLAnchorElement> {
|
||||
disabled?: boolean;
|
||||
}
|
||||
export interface ButtonProps extends CommonButtonProps, ButtonHTMLAttributes<HTMLButtonElement> {}
|
||||
|
||||
interface AbstractButtonProps extends CommonButtonProps, Themeable {
|
||||
|
Loading…
Reference in New Issue
Block a user