@activecollab/components
Version:
ActiveCollab Components
17 lines • 672 B
TypeScript
import React from "react";
/**
* @component GitHubIcon
* @description
* GitHub 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 GitHubIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default GitHubIcon;
//# sourceMappingURL=GitHub.d.ts.map