@activecollab/components
Version:
ActiveCollab Components
17 lines • 684 B
TypeScript
import React from "react";
/**
* @component CloudDeployFailedIcon
* @description
* Outline cloud glyph with an X through the bottom for failed
* deploy/upload-to-cloud signifiers. The cloud's bottom edge has a cutout so
* it does not intersect the X.
*
* @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
*
* @see https://design.activecollab.com/docs/foundations/icons
*/
declare const CloudDeployFailedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default CloudDeployFailedIcon;
//# sourceMappingURL=CloudDeployFailed.d.ts.map