@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
13 lines (12 loc) • 467 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { Box } from '@mantine/core';
import cx from 'clsx';
import { forwardRef } from 'react';
import classes from './CircleLoader.module.css';
export const CircleLoader = /*#__PURE__*/ forwardRef(({ className, ...others }, ref)=>/*#__PURE__*/ _jsx(Box, {
component: "span",
className: cx(classes.root, className),
...others,
ref: ref
}));
//# sourceMappingURL=CircleLoader.js.map