@atlaskit/button
Version:
A button triggers an event or action. They let users know what will happen next.
6 lines (5 loc) • 311 B
TypeScript
import React from 'react';
import { type BaseProps } from '../types';
type LoadingSpinnerProps = Pick<BaseProps, 'appearance' | 'isDisabled' | 'isSelected' | 'spacing'>;
export default function LoadingSpinner({ appearance, isDisabled, isSelected, spacing, }: LoadingSpinnerProps): React.JSX.Element;
export {};