import React from "react"; import PropTypes from "prop-types"; import cn from "classnames"; export interface ICloudBeesNavigationItemSubtextProps { ["data-testid"]?: string; className?: string; children?: React.ReactNode | React.ReactNode[]; } const CloudBeesNavigationItemSubtext = (props: ICloudBeesNavigationItemSubtextProps) => { const { children, className } = props; const testId = props["data-testid"] || "honeyui-cloudbees-navigation-item-subtext"; return (