import { Button } from '~/components/ui/button' import { cn } from '~/lib/utils' type Props = { value: number options?: readonly number[] onChange: (value: number) => void } const DEFAULT_OPTIONS = [12, 24, 48] as const export function PerPageSelector({ value, options = DEFAULT_OPTIONS, onChange }: Props) { return (