import { h } from 'vue'; export default function BPricingPlanPrice(props, { attrs, slots }) { return h('div', { ...attrs, class: 'plan-price' }, [h('span', { class: 'plan-price-amount' }, [h('span', { class: 'plan-price-currency' }, slots.currency ? slots.currency() : '$'), `${props.amount}`]), `/${props.interval}`]); } //# sourceMappingURL=BPricingPlanPrice.js.map