@helpwave/hightide
Version:
helpwave's component and theming library
15 lines (12 loc) • 452 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { SVGProps } from 'react';
type HelpwaveProps = SVGProps<SVGSVGElement> & {
color?: string;
animate?: 'none' | 'loading' | 'pulse' | 'bounce';
size?: number;
};
/**
* The helpwave loading spinner based on the svg logo.
*/
declare const Helpwave: ({ color, animate, size, ...props }: HelpwaveProps) => react_jsx_runtime.JSX.Element;
export { Helpwave, type HelpwaveProps };