PluginProbe
Yatra – Travel Booking & Tour Operator Software / 3.0.15
Yatra – Travel Booking & Tour Operator Software v3.0.15
3.0.15 3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 All 83 releases
yatra / resources / js / components / ui / label.tsx

label.tsx in Yatra – Travel Booking & Tour Operator Software 3.0.15, at resources/js/components/ui/label.tsx

19 lines 513 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import * as React from "react";
2
3 export interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {}
4
5 const Label = React.forwardRef<HTMLLabelElement, LabelProps>(
6 ({ className = "", ...props }, ref) => {
7 return (
8 <label
9 ref={ref}
10 className={`text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 text-gray-900 dark:text-white ${className}`}
11 {...props}
12 />
13 );
14 },
15 );
16 Label.displayName = "Label";
17
18 export { Label };
19