Remove @public annotations from non-exported components
Signed-off-by: Julio Zynger <julio.zynger@soundcloud.com>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user