import type { HTMLProps } from 'react'; export type TSpinnerSize = 'sm' | 'md' | 'lg'; export type TSpinnerProps = { /** Set the className for the Spinner's indicator to make it easier to customize the indicator */ indicatorClassName?: string; /** Set the size of the Spinner */ size?: TSpinnerSize; /** Set the className for the Spinner's track to make it easier to customize the track */ trackClassName?: string; } & Omit, 'size'>;