import { TemplateSelectorDropdown } from './template-selector-dropdown'; import { cn } from '@/lib/utils'; export const TemplateSelector = ({ title = 'Select a template', className = '', dropdownClassName = '', dropdownTriggerClassName = '', headingClassName = '', basePath, }: { title?: string; className?: string; dropdownClassName?: string; dropdownTriggerClassName?: string; headingClassName?: string; basePath?: string; }) => { return (

{title}{' '} {/* Shadcn UI & Shipixen ⋅ {numberOfThemes}+ themes */}

); };