How to set IconButton label value in custom plugin? #302
-
Beta Was this translation helpful? Give feedback.
Answered by
igordanchenko
Aug 14, 2024
Replies: 1 comment
-
You can register custom labels with the following module augmentation: declare module "yet-another-react-lightbox" {
interface Labels {
Rotate?: string;
}
} Thank you for pointing this out, I'll update the docs. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ammoyf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can register custom labels with the following module augmentation:
Thank you for pointing this out, I'll update the docs.