import React from "react"; type Props = { readonly className: string; readonly text: string; readonly id: string; readonly color?: string; }; export const Heading3 = ({ className, text, id, color }: Props) => { return (