Skip to content

Commit bd268ed

Browse files
committed
chore(sdk): adds beta tag to NFT prebuilt component
1 parent f368793 commit bd268ed

File tree

1 file changed

+4
-0
lines changed
  • packages/thirdweb/src/react/web/ui/prebuilt/NFT

1 file changed

+4
-0
lines changed

packages/thirdweb/src/react/web/ui/prebuilt/NFT/NFT.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export const NFTProviderContext = /* @__PURE__ */ createContext<
5959
* </Suspense>
6060
* </NFT>
6161
* ```
62+
* @beta
6263
*/
6364
export function NFT(props: React.PropsWithChildren<NFTProviderProps>) {
6465
return (
@@ -127,6 +128,7 @@ export type NFTMediaProps = Omit<
127128
* ```tsx
128129
* <NFT.Media style={{ borderRadius: "8px" }} className="mx-auto" />
129130
* ```
131+
* @beta
130132
*/
131133
NFT.Media = (props: NFTMediaProps) => {
132134
const { contract, tokenId } = useNFTContext();
@@ -181,6 +183,7 @@ NFT.Media = (props: NFTMediaProps) => {
181183
* </Suspense>
182184
* </NFT>
183185
* ```
186+
* @beta
184187
*/
185188
NFT.Name = (props: { className?: string; style?: React.CSSProperties }) => {
186189
const { contract, tokenId } = useNFTContext();
@@ -225,6 +228,7 @@ NFT.Name = (props: { className?: string; style?: React.CSSProperties }) => {
225228
* </Suspense>
226229
* </NFT>
227230
* ```
231+
* @beta
228232
*/
229233
NFT.Description = (props: {
230234
className: string;

0 commit comments

Comments
 (0)