import React from 'react'; import { cn } from '@documenso/ui/lib/utils'; type PropType = { selected: boolean; index: number; onClick: () => void; label: string; }; export const Thumb: React.FC = (props) => { const { selected, label, onClick } = props; return ( ); };