import React from 'react'; import { Icons } from '@ohif/ui-next'; import DividerItem from './DividerItem'; type BackItemProps = { backLabel?: string; onBackClick: () => void; }; const BackItem = ({ backLabel, onBackClick }: BackItemProps) => { return ( <>
{backLabel || 'Back to Display Options'}
); }; export default BackItem;