Skip to content

Commit 623d0bb

Browse files
committed
Fix type imports
1 parent a00e9b7 commit 623d0bb

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

apps/webapp/app/components/primitives/DateField.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
import { BellAlertIcon, XMarkIcon } from "@heroicons/react/20/solid";
21
import { CalendarDateTime, createCalendar } from "@internationalized/date";
32
import { useDateField, useDateSegment } from "@react-aria/datepicker";
4-
import type { DateFieldState, DateSegment } from "@react-stately/datepicker";
5-
import { useDateFieldState } from "@react-stately/datepicker";
6-
import { Granularity } from "@react-types/datepicker";
3+
import {
4+
useDateFieldState,
5+
type DateFieldState,
6+
type DateSegment,
7+
} from "@react-stately/datepicker";
8+
import { type Granularity } from "@react-types/datepicker";
79
import { useEffect, useRef, useState } from "react";
810
import { cn } from "~/utils/cn";
911
import { Button } from "./Buttons";

0 commit comments

Comments
 (0)