import classNames from 'classnames'; import type { ReactNode } from 'react'; export const FeeCard = ({ children, title, className, loading = false, }: { children: ReactNode; title: string; className?: string; loading?: boolean; }) => { return (

{title}

{loading ? : children}
); }; export const FeeCardLoader = () => { return (
); };