We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 435ba28 commit 42bfd8bCopy full SHA for 42bfd8b
src/components/ios-picker/Picker.tsx
@@ -0,0 +1,18 @@
1
+import { hours, minutes } from "@/constants/ios-picker";
2
+import PickerColumn from "./PickerColumn";
3
+
4
+const Picker = () => {
5
+ return (
6
+ <div className="relative flex justify-center items-center h-[150px] w-full">
7
+ <div className="absolute left-0 right-0 top-1/2 -translate-y-1/2 h-10 border-y border-gray-200 pointer-events-none select-none" />
8
9
+ <div className="flex gap-6">
10
+ <PickerColumn items={hours} label="hours" />
11
12
+ <PickerColumn items={minutes} label="min" />
13
+ </div>
14
15
+ );
16
+};
17
18
+export default Picker;
0 commit comments