@activecollab/components
Version:
ActiveCollab Components
26 lines • 870 B
TypeScript
import React from "react";
/**
* @component CheckboxIcon
* @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.
*
*
* @example
* return (
* <CheckboxIcon className="mr-2" showAdditionalIcon={true} />
* )
*
* @see
* https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
* @see
* https://design.activecollab.com/docs/foundations/icons
*/
declare const CheckboxIcon: React.ForwardRefExoticComponent<Omit<{
mixed?: boolean | undefined;
"data-testid"?: string | undefined;
} & React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default CheckboxIcon;
//# sourceMappingURL=CheckboxIcon.d.ts.map