mirror of
https://github.com/prymitive/karma
synced 2026-05-11 03:46:48 +00:00
13 lines
365 B
TypeScript
13 lines
365 B
TypeScript
import type { FC } from "react";
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { faExclamationCircle } from "@fortawesome/free-solid-svg-icons/faExclamationCircle";
|
|
|
|
const ValidationError: FC = () => (
|
|
<span className="text-danger">
|
|
<FontAwesomeIcon icon={faExclamationCircle} /> Required
|
|
</span>
|
|
);
|
|
|
|
export { ValidationError };
|