From b18a130a7560e0a74330a23492331256a0d5df79 Mon Sep 17 00:00:00 2001 From: Giuliano Caregnato Date: Tue, 19 Jul 2022 14:19:56 +0200 Subject: [PATCH] feat: added repeat exception icon --- src/icons/fill/RepeatException.jsx | 12 ++++++++++++ src/icons/fill/index.jsx | 1 + 2 files changed, 13 insertions(+) create mode 100644 src/icons/fill/RepeatException.jsx diff --git a/src/icons/fill/RepeatException.jsx b/src/icons/fill/RepeatException.jsx new file mode 100644 index 00000000..e508767a --- /dev/null +++ b/src/icons/fill/RepeatException.jsx @@ -0,0 +1,12 @@ +import * as React from 'react'; + +function SvgRepeatException(props) { + return ( + + + + + ); +} + +export default SvgRepeatException; diff --git a/src/icons/fill/index.jsx b/src/icons/fill/index.jsx index a87dd93d..bdcc3027 100644 --- a/src/icons/fill/index.jsx +++ b/src/icons/fill/index.jsx @@ -280,6 +280,7 @@ export { default as ReadReceipt } from './ReadReceipt'; export { default as Recording } from './Recording'; export { default as Refresh } from './Refresh'; export { default as Repeat } from './Repeat'; +export { default as RepeatException } from './RepeatException'; export { default as ReplyAll } from './ReplyAll'; export { default as Restore } from './Restore'; export { default as RewindLeft } from './RewindLeft';