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