UNPKG

@marlon-chaviano/field-kit

Version:

A collection of reusable and accessible form components built with React, TailwindCSS, and fully integrated with React Hook Form...

8 lines (7 loc) 265 B
import React from "react"; interface ErrorProps extends React.ComponentProps<"p"> { message: string; className?: string; } declare const Error: ({ className, message, ...props }: ErrorProps) => import("react/jsx-runtime").JSX.Element; export default Error;