File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
packages/thirdweb/src/react/web/ui/prebuilt/NFT Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ export const NFTProviderContext = /* @__PURE__ */ createContext<
5959 * </Suspense>
6060 * </NFT>
6161 * ```
62+ * @beta
6263 */
6364export 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 */
131133NFT . Media = ( props : NFTMediaProps ) => {
132134 const { contract, tokenId } = useNFTContext ( ) ;
@@ -181,6 +183,7 @@ NFT.Media = (props: NFTMediaProps) => {
181183 * </Suspense>
182184 * </NFT>
183185 * ```
186+ * @beta
184187 */
185188NFT . 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 */
229233NFT . Description = ( props : {
230234 className : string ;
You can’t perform that action at this time.
0 commit comments