import { addPropertyControls, ControlType } from 'framer';
import { CarbonBadge } from '@heychocolate/framer';
addPropertyControls(CarbonBadge, {
productId: { type: ControlType.String, title: 'Product ID' },
variant: {
type: ControlType.Enum,
title: 'Variant',
options: ['compact', 'detailed', 'inline'],
},
theme: {
type: ControlType.Enum,
title: 'Theme',
options: ['light', 'dark', 'auto'],
},
});