mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
13 lines
355 B
JavaScript
13 lines
355 B
JavaScript
import React from "react";
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { faExclamationCircle } from "@fortawesome/free-solid-svg-icons/faExclamationCircle";
|
|
|
|
const ValidationError = () => (
|
|
<span className="text-danger">
|
|
<FontAwesomeIcon icon={faExclamationCircle} /> Required
|
|
</span>
|
|
);
|
|
|
|
export { ValidationError };
|