@fidely-ui/react
Version:
Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps
12 lines (11 loc) • 465 B
JavaScript
'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import { forwardRef } from 'react';
import { ark } from '@ark-ui/react/factory';
import { styled } from '@fidely-ui/styled-system/jsx';
import { spinner } from '@fidely-ui/styled-system/recipes';
const StyledSpinner = styled(ark.div, spinner);
export const Spinner = forwardRef(function Spinner(props, ref) {
return _jsx(StyledSpinner, { ref: ref, ...props });
});
Spinner.displayName = 'Spinner';