import React from 'react' import { Popover } from '~/components/ui/popover' import { cn } from '~/lib/utils' export function EhBaseSelectorRoot({ className, ...props }: React.ComponentPropsWithoutRef<'div'>) { return (
) } export function EhBaseSelectorLabel({ className, ...props }: React.ComponentPropsWithoutRef<'div'>) { return (
) } export function EhBaseSelectorPopover({ ...props }: React.ComponentPropsWithoutRef) { return } export function EhBaseSelectorCommand({ className, ...props }: React.ComponentPropsWithoutRef<'div'>) { return (
) }