import React from 'react'; import { cn } from '..'; export const Spinner: React.FC< React.SVGProps & { innerSvgClass?: string } > = ({ innerSvgClass, ...props }) => { return ( ); }; export default Spinner;