UNPKG

klioso

Version:

Multi-Service Provider Management System for WordPress and Web Development with Enhanced Scanner

19 lines (18 loc) 351 B
export default function InputLabel({ value, className = '', children, ...props }) { return ( <label {...props} className={ `block text-sm font-medium text-gray-700 ` + className } > {value ? value : children} </label> ); }