UNPKG
uniforms-react-semantic
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.2-1
0.0.1
Semantic React UI components for uniforms.
cesarve/uniforms
uniforms-react-semantic
/
src
/
ErrorLabel.js
15 lines
(12 loc)
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * Created by cesar on 13/9/17. */
import
React
from
'react'
import
{
Label
}
from
"semantic-ui-react"
;
const
ErrorLabel
= (
props
) =>
<
Label
{
...props
} />
ErrorLabel
.
defaultProps
= {
basic
:
true
,
color
:
'red'
,
pointing
:
true
}
export
default
ErrorLabel