Add @public release tag to Spinner component (#34576)

This commit is contained in:
Ivana Huckova
2021-05-24 13:30:02 +02:00
committed by GitHub
parent 6796a89e9d
commit b5de6e7a1d
@@ -23,6 +23,10 @@ export type Props = {
inline?: boolean; inline?: boolean;
size?: number; size?: number;
}; };
/**
* @public
*/
export const Spinner: FC<Props> = (props: Props) => { export const Spinner: FC<Props> = (props: Props) => {
const { className, inline = false, iconClassName, style, size = 16 } = props; const { className, inline = false, iconClassName, style, size = 16 } = props;
const styles = getStyles(size, inline); const styles = getStyles(size, inline);