UNPKG

@activecollab/components

Version:

ActiveCollab Components

17 lines 657 B
import React from "react"; /** * @component GitIcon * @description * Git brand glyph. Filled so it inverts with the theme (safe on Neon and any * future dark theme) via the `--color-theme-600` token. * * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill. * Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)" * * @see https://design.activecollab.com/docs/foundations/icons */ declare const GitIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & { gradient?: string; }, "ref"> & React.RefAttributes<SVGSVGElement>>; export default GitIcon; //# sourceMappingURL=Git.d.ts.map