UNPKG

@shopify/polaris

Version:

Shopify’s product component library

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