NFT
Swap
Mesh
Governance
Pool
import { Box, NftMint } from '@interchain-ui/react';
function Demo() {
return (
<Box width='$full'>
<NftMint
tag='NOW LIVE'
title='Mint'
name='Bad Kids'
description='Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus.'
quantity={5000}
royalties={10}
minted={46}
available={2948}
priceDisplayAmount={64}
limited={50}
tokenName='STARS'
imgSrc='/explorer/badkids.jpeg'
pricePerToken={0.01063943}
onMint={() => {
console.log('onMint');
}}
onChange={(value) => {
console.log('onChange', value);
}}
/>
</Box>
);
}