import type React from 'react' import { IFeatureBadgeProps } from '../interfaces' /** * Feature/Pro badge - matches original EDD ProBadge styling */ export const FeatureBadge: React.FC = ({ feature, className = '' }) => { return ( {feature} ) }