UNPKG

@radix-ui/themes

Version:

[![Radix Themes Logo](https://radix-ui.com/social/themes.png)](https://radix-ui.com/themes)

12 lines 667 B
import * as React from 'react'; import { spinnerPropDefs } from './spinner.props.js'; import type { MarginProps } from '../props/margin.props.js'; import type { ComponentPropsWithout, RemovedProps } from '../helpers/component-props.js'; import type { GetPropDefTypes } from '../props/prop-def.js'; type SpinnerOwnProps = GetPropDefTypes<typeof spinnerPropDefs>; interface SpinnerProps extends ComponentPropsWithout<'span', RemovedProps>, MarginProps, SpinnerOwnProps { } declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<HTMLSpanElement>>; export { Spinner }; export type { SpinnerProps }; //# sourceMappingURL=spinner.d.ts.map