import React from 'react'; import { MEDIUM_GRAY } from '../../constants/colors'; type ControlsHeaderType = { text: string; color?: string; styleOverrides?: React.CSSProperties; }; /** * Header for use in plot controls components. */ export default function ControlsHeader({ text, color = MEDIUM_GRAY, styleOverrides = {}, }: ControlsHeaderType) { return (