UNPKG
@ducor/form
Version:
latest (5.2.0)
5.2.0
5.1.9
5.1.6
5.1.3
5.1.1
5.0.8
0.0.0
form package
github.com/ducorui/form
@ducor/form
/
dist
/
components
/
helperText.js
6 lines
(5 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ jsx
as
_jsx }
from
"react/jsx-runtime"
;
const
HelperText
= (
{ helperText }
) => {
return
_jsx
(
"p"
, {
className
:
'text-xs text-gray-500 pt-0.5'
,
children
: helperText }); };
export
default
HelperText
;