import HorizontalLine from "components/HorizontalLine"; type PanelHeaderProps = { icon?: string; title: string; description?: string; }; export default function PanelHeader(props: PanelHeaderProps): JSX.Element { return ( <>
{props.icon ? ( {props.icon} ) : ( "" )}

{props.title}

{props.description ?

{props.description}

: ""}
); }