UNPKG

@hypothesis/frontend-shared

Version:

Shared components, styles and utilities for Hypothesis projects

9 lines (8 loc) 244 B
export type SpinnerProps = { size?: 'sm' | 'md' | 'lg'; color?: 'text-light' | 'text' | 'text-inverted'; }; /** * Style a spinner icon. */ export default function Spinner({ size, color, }: SpinnerProps): import("preact").JSX.Element;