Issue Description
The README.md documents a thumbnail prop:
thumbnail (String): URL-encoded value of the poster/thumbnail URL to display. Defaults to the value set in asset details.
However, in src/index.tsx, the props interface (or type definition) for the GumletPlayer component does not include thumbnail. This causes TypeScript errors when trying to use it, and lacks autocomplete/intellisense support.
Expected Behavior
The thumbnail prop should be added to the component's PropTypes/TypeScript interface, e.g.:
interface GumletPlayerProps {
// ... existing props
thumbnail?: string;
}
Steps to Reproduce
- Install the package.
- In a TypeScript React file, use
- The player ignore the thumbnail attribute
Additional Info