diff --git a/src/features/forwards/options/components/advanced/exceptions/ExceptionsCard.js b/src/features/forwards/options/components/advanced/exceptions/ExceptionsCard.js new file mode 100644 index 0000000..6f7f211 --- /dev/null +++ b/src/features/forwards/options/components/advanced/exceptions/ExceptionsCard.js @@ -0,0 +1,25 @@ +import React from "react"; +import PropTypes from "prop-types"; +import ExpandableCard from "../../../../../../components/common/ExpandableCard"; +import { useTranslation } from "react-i18next"; +import PriorityHighIcon from "@material-ui/icons/PriorityHigh"; + +const ExceptionsCard = ({ exceptions }) => { + const { t } = useTranslation(); + + return ( + } + iconVariant="rounded" + title={t("Forward.Options.Exceptions")} + smallHeader + Content={
CONTENT...
} + /> + ); +}; + +ExceptionsCard.propTypes = { + exceptions: PropTypes.array.isRequired +}; + +export default ExceptionsCard;