xylabs/sdk-react

View on GitHub
packages/number-status/src/NumberStatusProps.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ButtonExProps } from '@xylabs/react-button'

interface NumberStatusProps extends ButtonExProps {
  autoWidth?: boolean
  error?: Error
  fontSize?: number
  format?: string
  rounded?: boolean
  shorten?: string | boolean
  title?: string
  value?: number | string
  width?: number
}

export type { NumberStatusProps }