@stihl-design-system/components
Version:
Welcome to the STIHL Design System react component library.
14 lines (13 loc) • 493 B
TypeScript
import { NumberIndicatorVariant } from './NumberIndicator.utils';
import { JSX } from 'react';
export interface NumberIndicatorProps extends React.HTMLAttributes<HTMLSpanElement> {
/** Content within the NumberIndicator. */
label?: string;
/**
* Variant of the NumberIndicator.
*
* @default 'default'
*/
variant?: NumberIndicatorVariant;
}
export declare const NumberIndicator: ({ label, className, variant, ...rest }: NumberIndicatorProps) => JSX.Element;