@state-less/leap-frontend
Version:
A collection of open source fullstack services powered by React Server
29 lines (28 loc) • 1.03 kB
TypeScript
import { CardProps } from '@mui/material';
export type ViewCounterProps = {
componentKey: string;
data?: any;
skip?: boolean;
variant?: 'chips' | 'plaintext' | 'listitem';
clientOnly?: boolean;
sx?: CardProps['sx'];
textColor?: string;
ssr?: boolean;
};
export declare const ViewCounterSpan: ({ component, clientOnly }: {
component: any;
clientOnly: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const ViewCounterChip: ({ clientOnly, loading, component }: {
clientOnly: any;
loading: any;
component: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const ViewCounterItem: ({ component, clientOnly, loading, sx, textColor, }: {
component: any;
clientOnly: any;
loading: any;
sx: any;
textColor: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const ViewCounter: ({ componentKey, data, skip, variant, clientOnly, sx, textColor, ssr, }: ViewCounterProps) => import("react/jsx-runtime").JSX.Element;