diff --git a/platform/ui-next/src/components/Icons/Icons.tsx b/platform/ui-next/src/components/Icons/Icons.tsx index bf9e6d91007..67771113973 100644 --- a/platform/ui-next/src/components/Icons/Icons.tsx +++ b/platform/ui-next/src/components/Icons/Icons.tsx @@ -183,6 +183,7 @@ import Magnifier from './Sources/Magnifier'; import LoadingOHIFMark from './Sources/LoadingOHIFMark'; import ArrowLeftBold from './Sources/ArrowLeftBold'; import Pencil from './Sources/Pencil'; +import NotificationWarning from './Sources/NotificationWarning'; // // // @@ -200,157 +201,157 @@ const ImageWrapper = ({ src, ...props }: { src: string } & ImageIconProps) => { }; export const Icons = { - CTAAA: (props: ImageIconProps) => ( + 'CT-AAA': (props: ImageIconProps) => ( ), - CTAAA2: (props: ImageIconProps) => ( + 'CT-AAA2': (props: ImageIconProps) => ( ), - CTAir: (props: ImageIconProps) => ( + 'CT-Air': (props: ImageIconProps) => ( ), - CTBone: (props: ImageIconProps) => ( + 'CT-Bone': (props: ImageIconProps) => ( ), - CTBones: (props: ImageIconProps) => ( + 'CT-Bones': (props: ImageIconProps) => ( ), - CTCardiac: (props: ImageIconProps) => ( + 'CT-Cardiac': (props: ImageIconProps) => ( ), - CTCardiac2: (props: ImageIconProps) => ( + 'CT-Cardiac2': (props: ImageIconProps) => ( ), - CTCardiac3: (props: ImageIconProps) => ( + 'CT-Cardiac3': (props: ImageIconProps) => ( ), - CTChestContrastEnhanced: (props: ImageIconProps) => ( + 'CT-Chest-Contrast-Enhanced': (props: ImageIconProps) => ( ), - CTChestVessels: (props: ImageIconProps) => ( + 'CT-Chest-Vessels': (props: ImageIconProps) => ( ), - CTCoronaryArteries: (props: ImageIconProps) => ( + 'CT-Coronary-Arteries': (props: ImageIconProps) => ( ), - CTCoronaryArteries2: (props: ImageIconProps) => ( + 'CT-Coronary-Arteries-2': (props: ImageIconProps) => ( ), - CTCoronaryArteries3: (props: ImageIconProps) => ( + 'CT-Coronary-Arteries-3': (props: ImageIconProps) => ( ), - CTCroppedVolumeBone: (props: ImageIconProps) => ( + 'CT-Cropped-Volume-Bone': (props: ImageIconProps) => ( ), - CTFat: (props: ImageIconProps) => ( + 'CT-Fat': (props: ImageIconProps) => ( ), - CTLiverVasculature: (props: ImageIconProps) => ( + 'CT-Liver-Vasculature': (props: ImageIconProps) => ( ), - CTLung: (props: ImageIconProps) => ( + 'CT-Lung': (props: ImageIconProps) => ( ), - CTMIP: (props: ImageIconProps) => ( + 'CT-MIP': (props: ImageIconProps) => ( ), - CTMuscle: (props: ImageIconProps) => ( + 'CT-Muscle': (props: ImageIconProps) => ( ), - CTPulmonaryArteries: (props: ImageIconProps) => ( + 'CT-Pulmonary-Arteries': (props: ImageIconProps) => ( ), - CTSoftTissue: (props: ImageIconProps) => ( + 'CT-Soft-Tissue': (props: ImageIconProps) => ( ), - DTIFABrain: (props: ImageIconProps) => ( + 'DTI-FA-Brain': (props: ImageIconProps) => ( ), - MRAngio: (props: ImageIconProps) => ( + 'MR-Angio': (props: ImageIconProps) => ( ), - MRDefault: (props: ImageIconProps) => ( + 'MR-Default': (props: ImageIconProps) => ( ), - MRMIP: (props: ImageIconProps) => ( + 'MR-MIP': (props: ImageIconProps) => ( ), - MRT2Brain: (props: ImageIconProps) => ( + 'MR-T2-Brain': (props: ImageIconProps) => ( Alert(props), info: (props: IconProps) => Info(props), 'notifications-info': (props: IconProps) => NotificationInfo(props), + 'notificationwarning-diamond': (props: IconProps) => NotificationWarning(props), 'content-prev': (props: IconProps) => ContentPrev(props), 'content-next': (props: IconProps) => ContentNext(props), 'icon-settings': (props: IconProps) => Settings(props), diff --git a/platform/ui-next/src/components/Icons/Sources/NotificationWarning.tsx b/platform/ui-next/src/components/Icons/Sources/NotificationWarning.tsx new file mode 100644 index 00000000000..aafaa92eea7 --- /dev/null +++ b/platform/ui-next/src/components/Icons/Sources/NotificationWarning.tsx @@ -0,0 +1,44 @@ +import React from 'react'; +import type { IconProps } from '../types'; + +export const NotificationInfo = (props: IconProps) => ( + + + + + + + + + + +); + +export default NotificationInfo;