@activecollab/components
Version:
ActiveCollab Components
32 lines • 1.06 kB
TypeScript
import React from "react";
/**
* @component ExpenseAddIcon
* @description
*
* The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
* The Icon component is
* customizable, allowing for variations in size, color, and style to fit the needs of the application.
*
* @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
* Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
*
* @example
* return (
* <ExpenseAddIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
* )
*
* @example
* return (
* <ExpenseAddIcon className="mr-2" />
* )
*
* @see
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
* @see
* https://design.activecollab.com/docs/foundations/icons
*/
declare const ExpenseAddIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default ExpenseAddIcon;
//# sourceMappingURL=ExpenseAdd.d.ts.map