diff --git a/ReactApp/src/components/BaseComponents/BitIndicators.tsx b/ReactApp/src/components/BaseComponents/BitIndicators.tsx index 987621bf..67ff2b1a 100644 --- a/ReactApp/src/components/BaseComponents/BitIndicators.tsx +++ b/ReactApp/src/components/BaseComponents/BitIndicators.tsx @@ -187,6 +187,14 @@ interface BitIndicatorsProps { * Additional props for the tooltip component. */ tooltipProps?: object; + /** + * The color of the bits when on. + */ + onColor?: string; + /** + * The color of the bits when off. + */ + offColor?: string; } /** @@ -208,16 +216,17 @@ const BitIndicators = ({ usePvBitLabels = false, ...props }: BitIndicatorsProps) => { + return ( ); };