pricing-card
Pricing Card
A simple pricing card component
1.0.0
Live preview
Interactive component canvasPlan
Pro
$9/mo
A polished price point with gentle hierarchy and Apple-like clarity.
Usage
TypeScriptCSS
import PricingCard from 'components/pricing-card/pricing-card'
type Props = {
title?: string
price?: string
}
export default function App({ title, price }: Props) {
return <PricingCard title="Pro" price="$9" />
}