@activecollab/components
Version:
ActiveCollab Components
15 lines • 564 B
TypeScript
import React from "react";
/**
* @component GitPullRequestIcon
* @description
* Outline git pull-request glyph 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 GitPullRequestIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default GitPullRequestIcon;
//# sourceMappingURL=GitPullRequest.d.ts.map