Browse Source

add label to ButtonProps type definition (#6066)

pull/6068/head
Navid Salehi 1 year ago
committed by GitHub
parent
commit
acc092304b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      src/panels/config/config.ts

1
src/panels/config/config.ts

@ -12,6 +12,7 @@ const prv = 'preview';
interface ButtonProps { interface ButtonProps {
id?: string; id?: string;
active?: boolean; active?: boolean;
label?: string;
togglable?: boolean; togglable?: boolean;
className?: string; className?: string;
command?: string | (() => any); command?: string | (() => any);

Loading…
Cancel
Save