UNPKG

@activecollab/components

Version:

ActiveCollab Components

17 lines 684 B
import React from "react"; /** * @component GearFailedIcon * @description * Outline gear/cog glyph with a cutout in the lower-right corner holding an X * badge — used to signify a failed settings/configuration action. The cutout * separates the X from the gear outline. * * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke. * * @see https://design.activecollab.com/docs/foundations/icons */ declare const GearFailedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & { gradient?: string; }, "ref"> & React.RefAttributes<SVGSVGElement>>; export default GearFailedIcon; //# sourceMappingURL=GearFailed.d.ts.map