UNPKG

@activecollab/components

Version:

ActiveCollab Components

15 lines 524 B
import React from "react"; /** * @component GearIcon * @description * Outline gear/cog glyph for settings/configuration signifiers. * * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke. * * @see https://design.activecollab.com/docs/foundations/icons */ declare const GearIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & { gradient?: string; }, "ref"> & React.RefAttributes<SVGSVGElement>>; export default GearIcon; //# sourceMappingURL=Gear.d.ts.map