import React from "react"; import { HeaderContainer } from "./styles"; import { AnnotatedTitle, Title, Tooltip } from "./annotatedTitle"; type Props = { title: Title tooltip?: Tooltip } /** * A header used by all non-panel controls, containing an informative title. */ export const ControlHeader = ({title, tooltip=undefined }: Props): JSX.Element => { return ( ); };