Components
Spinner
Documentation for the Spinner component.
Spinner
Preview
The Spinner component is built with React Aria and styled using StyleX.
Import
import { Spinner } from '@moul-dev/ui';Usage
Here is a basic example of how to use the Spinner component:
import { Spinner } from '@moul-dev/ui';
export default function Example() {
return (
<Spinner>
{/* Component content */}
</Spinner>
);
}