import clsx from 'clsx'; import { globals } from '@/utils/constants'; import { CProps } from '../props'; interface IndicatorProps extends CProps.Titled, CProps.Styling { icon: React.ReactNode; noPadding?: boolean; } function Indicator({ icon, title, titleHtml, hideTitle, noPadding, className, ...restProps }: IndicatorProps) { return (
{icon}
); } export default Indicator;