diff --git a/epictrack-web/src/components/icons/index.tsx b/epictrack-web/src/components/icons/index.tsx index 50002700f..cb80fe4b7 100644 --- a/epictrack-web/src/components/icons/index.tsx +++ b/epictrack-web/src/components/icons/index.tsx @@ -308,6 +308,17 @@ const ExclamationMediumIcon = (props: IconProps) => { ); }; +const PauseIcon = (props: IconProps) => { + return ( + + + + ); +}; + const icons: { [x: string]: React.FC } = { AllIcon, DashboardIcon, @@ -340,6 +351,7 @@ const icons: { [x: string]: React.FC } = { GoToIcon, ExclamationMediumIcon, ExclamationSmallIcon, + PauseIcon, }; export default icons;