JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "InputLabel.jsx"

Full Path: /var/www/laravel_filter/vendor/laravel/breeze/stubs/inertia-react/resources/js/Components/InputLabel.jsx
File size: 275 bytes
MIME-type: text/plain
Charset: utf-8

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