Remove @public annotations from non-exported components

Signed-off-by: Julio Zynger <julio.zynger@soundcloud.com>
This commit is contained in:
Julio Zynger
2022-04-28 13:58:15 +02:00
parent 6f66ba0bf8
commit 5ca95bb586
@@ -43,7 +43,6 @@ const useStyles = makeStyles<BackstageTheme>(
{ name: 'CodeSceneGauge' },
);
/** @public */
export type GaugeProps = {
value: number;
max: number;
@@ -51,14 +50,12 @@ export type GaugeProps = {
tooltipText: string;
};
/** @public */
export type GaugePropsGetColorOptions = {
palette: BackstagePalette;
value: number;
max: number;
};
/** @public */
export type GaugePropsGetColor = (args: GaugePropsGetColorOptions) => string;
export const getProgressColor: GaugePropsGetColor = ({
@@ -82,8 +79,6 @@ export const getProgressColor: GaugePropsGetColor = ({
/**
* Circular Progress Bar
*
* @public
*
*/
export function Gauge(props: GaugeProps) {
const classes = useStyles(props);