@elacity-js/uikit
Version:
React / Material UI Design kit for Elacity project
12 lines (11 loc) • 379 B
TypeScript
import React from 'react';
import type { BoxProps } from '@mui/material/Box';
interface NumberLabelProps extends BoxProps {
value?: number;
label: string;
loading?: boolean;
children?: React.ReactNode;
minWidth?: number;
}
export default function NumberLabel({ value, label, loading, children, minWidth, ...props }: NumberLabelProps): JSX.Element;
export {};