UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

14 lines (13 loc) 522 B
import React from 'react'; import { IDotStandAlone } from './types/dot'; /** * @description * Dot component is a component that can be used to display a dot. * It can be used to display a notification dot or a dot to indicate a status. * @param {IDotStandAlone} props * @returns {JSX.Element} * @constructor * @example * <Dot variant="primary" size="SMALL" number={1} maxNumber={99} /> */ export declare const DotStandAlone: React.ForwardRefExoticComponent<IDotStandAlone & React.RefAttributes<HTMLSpanElement>>;