Remix
Remix
remix/ui/accordion · TypeView Source

AccordionSingleProps

Signature

type AccordionSingleProps = AccordionBaseProps & {
  collapsible?: boolean;
  defaultValue?: string | null;
  onValueChange?: (value: string | null) => void;
  type?: "single";
  value?: string | null;
};