Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/thirdweb/src/react/web/ui/prebuilt/NFT/media.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import { useNFTContext } from "./provider.js";
* It is similar to the [`MediaRendererProps`](https://portal.thirdweb.com/references/typescript/v5/MediaRendererProps)
* (excluding `src`, `poster` and `client`) that you can
* use to style the NFTMedia
*
* @beta
*/
export type NFTMediaProps = Omit<
MediaRendererProps,
Expand Down Expand Up @@ -76,7 +78,7 @@ export type NFTMediaProps = Omit<
* ```tsx
* <NFTMedia style={{ borderRadius: "8px" }} className="mx-auto" />
* ```
* @nft
* @nft @beta
*/
export function NFTMedia({
loadingComponent,
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/src/react/web/ui/prebuilt/NFT/name.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export interface NFTNameProps
* </NFTProvider>
* ```
*
* @nft
* @nft @beta
*/
export function NFTName({
loadingComponent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function useNFTContext() {
* <NFTName />
* </NFTProvider>
* ```
* @nft
* @nft @beta
*/
export function NFTProvider(props: React.PropsWithChildren<NFTProviderProps>) {
return (
Expand Down
Loading