UNPKG

polaris-glints

Version:

Glints forked polaris react

15 lines (12 loc) 354 B
import React from 'react'; import { classNames } from '../../utilities/css.js'; import styles from './Indicator.scss.js'; function Indicator({ pulse = true }) { const className = classNames(styles.Indicator, pulse && styles.pulseIndicator); return /*#__PURE__*/React.createElement("span", { className: className }); } export { Indicator };