UNPKG

@activecollab/components

Version:

ActiveCollab Components

15 lines 557 B
import React from "react"; /** * @component GitCommitIcon * @description * Outline git-commit glyph (a node on a line) for source-control signifiers. * * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke. * * @see https://design.activecollab.com/docs/foundations/icons */ declare const GitCommitIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & { gradient?: string; }, "ref"> & React.RefAttributes<SVGSVGElement>>; export default GitCommitIcon; //# sourceMappingURL=GitCommit.d.ts.map