import React from 'react'; import { Label, Menu } from 'app/shared/components/text/text'; export interface Props { label: string; info?: React.ReactNode; subLabel?: string; } const DashboardVesselListLabel = ({ label, subLabel, info, }: Props) =>
{info}
{subLabel ? subLabel : ''}
; export { DashboardVesselListLabel };