Skip to main content

ProductVariantPrice
component

A component for displaying product pricing with support for discounts and custom styling. You can view the Storybook for more interactive examples.

Was this section helpful?

ProductVariantPrice

import {ProductVariantPrice} from '@shopify/shop-minis-react'

export default function MyComponent() {
return (
<ProductVariantPrice
amount="29.99"
currencyCode="USD"
/>
)
}

Preview

ProductVariantPrice configurations and styles

A basic product price display

A product price with discount showing compare at price

A product price with custom styling classes

Was this section helpful?

Default pricing

import {ProductVariantPrice} from '@shopify/shop-minis-react'

export default function MyComponent() {
return (
<ProductVariantPrice
amount="29.99"
currencyCode="USD"
/>
)
}