Minor changes

This commit is contained in:
Jose Selesan
2026-05-05 18:40:41 -03:00
parent c089215835
commit b97eb9c8a4
4 changed files with 24 additions and 10 deletions

View File

@@ -4,12 +4,14 @@ import { DayPicker } from 'react-day-picker';
import { buttonVariants } from '@/components/ui/button';
import { cn } from '@/lib/utils';
import { es } from 'date-fns/locale';
export type CalendarProps = React.ComponentProps<typeof DayPicker>;
function Calendar({ className, classNames, showOutsideDays = true, ...props }: CalendarProps) {
return (
<DayPicker
locale={es}
showOutsideDays={showOutsideDays}
className={cn('p-3', className)}
classNames={{