UNPKG

krypton-vite-demo

Version:
7 lines (6 loc) 187 B
import { ComponentPropsWithoutRef } from "react"; type FormLabelType = { children: string; }; export type FormLabelProps = ComponentPropsWithoutRef<"div"> & FormLabelType; export {};