import { type ComponentPropsWithoutRef } from 'react'; import { cx } from '../utils'; export const List = ({ className, ...props }: ComponentPropsWithoutRef<'div'>) => (
); export const Row = ({ selected, className, ...props }: ComponentPropsWithoutRef<'div'> & { selected?: boolean }) => (
);