UNPKG

uniforms-react-semantic

Version:

Semantic React UI components for uniforms.

15 lines (12 loc) 270 B
/** * 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