/** @jsx h */
import { forwardRef } from 'preact/compat';
import { h } from 'preact';
export const MinusCircleMiniSolid = forwardRef((props, ref) => {
    return (<svg {...props} ref={ref} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true" data-slot="icon">
      <path fillRule="evenodd" d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM6.75 9.25a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z" clipRule="evenodd"/>
    </svg>);
});
//# sourceMappingURL=minus-circle-mini-solid.jsx.map