import clsx from 'clsx'; import React from 'react'; interface IIndicator { state?: 'active' | 'pending' | 'error' | 'inactive' size?: 'sm' } /** Indicator dot component. */ const Indicator: React.FC = ({ state = 'inactive', size = 'sm' }) => { return (
); }; export default Indicator;