@brightsoftware/date-np
Version:
Simple & minimal Nepali date picker that just works.
9 lines (8 loc) • 358 B
TypeScript
import type { DetailedHTMLProps, LabelHTMLAttributes } from "react";
type tlabelprops = {
required?: boolean;
className?: string;
children?: React.ReactNode;
} & DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>;
declare const Label: (props: tlabelprops) => import("react/jsx-runtime").JSX.Element;
export default Label;