A visual selection component presenting options as clickable cards with icons, titles, and descriptions. Supports single and multi-select modes.
Basic
import { Choicebox } from '@primstack/ui/choicebox'
<Choicebox
options={[
{ value: 'starter', title: 'Starter', description: 'For individuals' },
{ value: 'pro', title: 'Pro', description: 'For teams' },
]}
value="starter"
onValueChange={setPlan}
/>