UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

8 lines 379 B
import React from 'react'; import classNames from 'classnames'; export const StepperDots = ({ tag = 'ul', className, testId, ...attributes }) => { const Tag = tag; const wrapperClass = classNames('steppers-dots', className); return React.createElement(Tag, { ...attributes, className: wrapperClass, "data-testid": testId }); }; //# sourceMappingURL=StepperDots.js.map